
:root {
    --primary-colors: #0d284a; /* Deep Navy Blue */
    --secondary-colors: #f7b32d; /* Vibrant Gold Accent */
    --accent-color: #2db97e; /* A fresh green for a modern look */
    --star-color: #ffc107;
    --border-color: #e0e0e0;
    --dark-text: #2c3e50;
    --light-text: #ffffff;
    --card-bg: #ffffff; /* White background for a clean look */
    --shadow-color: rgba(0, 0, 0, 0.05);
}
/* --- Footer Styles --- */
.pccs-footer-v2 {
    background-color: var(--primary-colors);
    color: var(--light-text);
    padding: 4rem 2rem 2rem;
}

.pccs-footer-content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

/* Footer Section Headings */
.pccs-footer-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--secondary-colors);
}

/* Footer Logo & Brand */
.pccs-footer-logo-img {
    height: 50px;
    border-radius: 15px;
    width: auto;
    margin-bottom: 1rem;
    /* filter: brightness(0) invert(1); */
}

.pccs-footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* Contact List & Quick Links */
.pccs-contact-list,
.pccs-footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pccs-contact-list li,
.pccs-footer-links-list li {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pccs-contact-list a,
.pccs-footer-links-list a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pccs-contact-list a:hover,
.pccs-footer-links-list a:hover {
    color: var(--secondary-colors);
}

.pccs-icon {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    color: var(--secondary-colors);
}

/* Social Icons */
.pccs-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.pccs-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pccs-social-icons a:hover {
    background-color: var(--secondary-colors);
    color: var(--primary-colors);
    transform: translateY(-3px);
}

/* Bottom Copyright */
.pccs-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .pccs-footer-content-wrapper {
        text-align: center;
    }

    .pccs-footer-social,
    .pccs-footer-brand {
        align-items: center;
    }

    .pccs-social-icons {
        justify-content: center;
    }
}