/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f8f9fa;
    background: #000000;
}

/* Footer Main Container */
.pint-footer-main {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #1a1a1a 100%);
    border-top: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
}

.pint-footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(50, 50, 50, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(100, 100, 100, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.pint-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Footer Content */
.pint-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding: 80px 0 60px;
}

/* Footer Info Section */
.pint-footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pint-footer-logo {
    margin-bottom: 1rem;
}

.pint-logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 50%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pint-footer-description {
    color: #a0a0a0;
    line-height: 1.7;
    font-size: 1rem;
    max-width: 300px;
}

/* Social Links */
.pint-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.pint-social-link {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #3a3a3a;
    color: #c0c0c0;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.pint-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #c0c0c0, #5a5a5a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pint-social-link:hover {
    transform: translateY(-3px);
    border-color: #c0c0c0;
    box-shadow: 0 8px 20px rgba(192, 192, 192, 0.1);
    color: #ffffff;
}

.pint-social-link:hover::before {
    opacity: 0.1;
}

.pint-social-link i {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.pint-social-link:hover i {
    transform: scale(1.1);
}

/* Footer Links Sections */
.pint-footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pint-links-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
}

.pint-links-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c0c0c0, #5a5a5a);
    border-radius: 2px;
}

.pint-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pint-link-item {
    transition: transform 0.3s ease;
}

.pint-link-item:hover {
    transform: translateX(5px);
}

.pint-link {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.pint-link:hover {
    color: #ffffff;
}

/* Footer Contact Section */
.pint-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pint-contact-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    position: relative;
}

.pint-contact-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #c0c0c0, #5a5a5a);
    border-radius: 2px;
}

.pint-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pint-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pint-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #3a3a3a;
    color: #c0c0c0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.pint-contact-item:hover .pint-contact-icon {
    background: linear-gradient(135deg, #c0c0c0 0%, #5a5a5a 100%);
    color: #1a1a1a;
    transform: scale(1.1);
}

.pint-contact-text {
    flex: 1;
}

.pint-contact-value {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Footer Bottom */
.pint-footer-bottom {
    border-top: 1px solid #2a2a2a;
    padding: 30px 0;
}

.pint-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pint-copyright {
    color: #5a5a5a;
    font-size: 0.9rem;
    text-align: center;
}

/* Animations */
@keyframes pintFooterFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations to footer sections */
.pint-footer-content > * {
    animation: pintFooterFadeInUp 0.8s ease-out;
}

.pint-footer-info { animation-delay: 0.1s; }
.pint-footer-links:nth-child(2) { animation-delay: 0.2s; }
.pint-footer-links:nth-child(3) { animation-delay: 0.3s; }
.pint-footer-contact { animation-delay: 0.4s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .pint-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .pint-footer-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .pint-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 0 40px;
    }
    
    .pint-footer-description {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .pint-footer-container {
        padding: 0 20px;
    }
    
    .pint-footer-content {
        padding: 40px 0 30px;
        gap: 30px;
    }
    
    .pint-logo-text {
        font-size: 1.75rem;
    }
    
    .pint-social-links {
        justify-content: center;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .pint-social-link,
    .pint-link-item,
    .pint-contact-item {
        transition: none;
    }
    
    .pint-footer-content > * {
        animation: none;
    }
    
    .pint-social-link:hover,
    .pint-link-item:hover {
        transform: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .pint-footer-main {
        background: #000000;
        border-top: 2px solid #ffffff;
    }
    
    .pint-footer-bottom {
        border-top: 2px solid #ffffff;
    }
    
    .pint-social-link,
    .pint-contact-icon {
        border: 2px solid #ffffff;
    }
}

/* Force icon visibility */
.pint-social-link i,
.pint-contact-icon i {
    color: inherit;
    visibility: visible;
    opacity: 1;
}