/* Button Styles */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-pink), var(--dark-pink));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--bg-secondary-light);
    padding: 5rem 5% 2rem;
    position: relative;
}

body.dark-mode .footer {
    background: #111;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .footer-main {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-pink);
    display: block;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary-light);
    margin: 0 0 1.5rem;
    max-width: 300px;
    line-height: 1.7;
    font-size: 0.95rem;
}

body.dark-mode .footer-brand p {
    color: var(--text-secondary-dark);
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-pink);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--primary-pink);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

body.dark-mode .footer-links h4 {
    color: var(--text-dark);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--text-secondary-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

body.dark-mode .footer-links a {
    color: var(--text-secondary-dark);
}

.footer-links a:hover {
    color: var(--primary-pink);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-bottom p {
    color: var(--text-secondary-light);
    font-size: 0.85rem;
    margin: 0;
}

body.dark-mode .footer-bottom p {
    color: var(--text-secondary-dark);
}

.footer-bottom a {
    color: var(--primary-pink);
    text-decoration: none;
}

.back-to-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-pink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 105, 180, 0.4);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

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

    .footer-brand p {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 4%;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 0.85rem;
    }

    .footer-section {
        padding: 2rem 4%;
    }

    .footer-brand h3 {
        font-size: 1.2rem;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 0.85rem;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
