/* Photokrop Footer Styles */
.photokrop-footer {
    background: #000c14;
    color: white;
    padding: 80px 20px 20px;
    border-top: 1px solid rgba(124, 255, 0, 0.1);
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-brand .footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: white;
}

.footer-brand .footer-logo span {
    color: var(--brand-green);
}

.footer-brand p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* --- Social Links (Fixed No Underline) --- */
.social-links {
    display: flex;
    gap: 15px;
    list-style: none !important;
    padding: 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none !important;
    /* Force Remove */
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    outline: none !important;
    box-shadow: none !important;
}

.social-links a:hover {
    background: var(--brand-green);
    color: #000 !important;
    transform: translateY(-5px);
    text-decoration: none !important;
}

/* --- Footer Links --- */
.footer-links h4,
.footer-careers h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    color: white;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--brand-green);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none !important;
    transition: 0.3s;
    font-size: 0.9rem;
    border: none !important;
}

.footer-links ul li a:hover {
    color: var(--brand-green);
    padding-left: 8px;
}

/* Career Section Styling Fix */
.footer-careers {
    display: flex;
    flex-direction: column;
}

.career-card-link {
    text-decoration: none !important;
    /* Underline hatane ke liye */
    display: block;
    outline: none !important;
}

.career-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Text ek side, icon ek side */
    background: rgba(255, 255, 255, 0.05);
    /* Glass effect */
    padding: 8px 8px 8px 20px;
    border-radius: 50px;
    /* Capsule shape */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 10px;
    max-width: 250px;
    /* Width control */
}

.career-text {
    color: white !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none !important;
}

.career-btn-circle {
    background: var(--brand-green);
    /* Neon Green */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.career-btn-circle i {
    color: #001019;
    /* Dark icon */
    font-size: 0.8rem;
}

/* Hover Effects */
.career-box:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    transform: scale(1.05);
}

.career-box:hover .career-text {
    color: #000 !important;
    /* Text dark ho jayega hover pe */
}

.career-box:hover .career-btn-circle {
    background: #000;
}

.career-box:hover .career-btn-circle i {
    color: var(--brand-green);
    transform: rotate(-45deg);
}

/* --- Footer Bottom --- */
.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.85rem;
}

.footer-bottom span {
    color: var(--brand-green);
    font-weight: 600;
}

/* --- Responsive Implementation --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .career-box {
        max-width: 300px;
        margin: 0 auto;
    }
}