
:root {
    --coop-blue: #2563eb;
    --coop-orange: #f97316;
    --coop-yellow: #fbbf24;
    --coop-white: #ffffff;
    --dark-blue: #1e40af;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --dark-gray: #1e293b;
}

/* Navigation Styles */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
}

.logo-icon img {
    width: 80px;
    border-radius: 8px;
    font-weight: 800;
    margin-right: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    background-color: var(--coop-orange);
    border-radius: 5px;
    padding: 10px 10px;
}

.nav-links a.active {
    background-color: var(--coop-orange);
    border-radius: 5px;
    padding: 10px 10px;
    color: white;
}

.nav-cta {
    background: var(--coop-blue);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--dark-blue);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    background: rgba(0,0,0,0.05);
}

.mobile-menu span {
    width: 28px;
    height: 3px;
    background: var(--dark-gray);
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation Panel */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.mobile-nav-panel.active {
    right: 0;
}

.mobile-nav-header {
    padding: 2rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
}

.mobile-nav-close {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-gray);
}

.mobile-nav-links {
    padding: 2rem;
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 1.5rem;
}

.mobile-nav-links a {
    color: var(--dark-gray);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--coop-orange);
}

.mobile-nav-links a.active {
    color: var(--coop-orange);
    font-weight: 600;
    position: relative;
}

.mobile-nav-links a.active::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--coop-orange);
    border-radius: 2px;
}

.mobile-nav-cta {
    margin: 2rem;
    padding: 1rem;
    background: var(--coop-blue);
    color: white;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: block;
}

.mobile-nav-cta:hover {
    background: var(--dark-blue);
}

/* Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Animation */
.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 2rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-icon img {
        width: 60px;
        margin-right: 30px;
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.9rem;
    }
    
    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .logo-icon img {
        width: 50px;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 3%;
        min-height: 70px;
    }
    
    .nav-links, .nav-cta {
        display: none !important;
    }
    
    .mobile-menu {
        display: flex !important;
    }
    
    .logo {
        font-size: 1.2rem;
        font-weight: 700;
    }
    
    .logo-icon img {
        width: 50px;
        margin-right: 15px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    /* Mobile Navigation Panel */
    .mobile-nav-panel {
        width: 85%;
        max-width: 280px;
    }
    
    .mobile-nav-header {
        padding: 1.5rem;
    }
    
    .mobile-nav-title {
        font-size: 1.1rem;
    }
    
    .mobile-nav-links {
        padding: 1.5rem;
    }
    
    .mobile-nav-links li {
        margin-bottom: 1rem;
    }
    
    .mobile-nav-links a {
        font-size: 1rem;
    }
    
    .mobile-nav-cta {
        margin: 1.5rem;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    nav {
        padding: 0.8rem 2%;
        min-height: 65px;
    }
    
    .logo {
        font-size: 1.1rem;
        font-weight: 700;
    }
    
    .logo-icon img {
        width: 45px;
        margin-right: 12px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .mobile-menu span {
        width: 26px;
        height: 3px;
    }
    
    .mobile-nav-panel {
        width: 90%;
        max-width: 250px;
    }
    
    .mobile-nav-header {
        padding: 1rem;
    }
    
    .mobile-nav-title {
        font-size: 1rem;
    }
    
    .mobile-nav-close {
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
    }
    
    .mobile-nav-links {
        padding: 1rem;
    }
    
    .mobile-nav-links li {
        margin-bottom: 0.8rem;
    }
    
    .mobile-nav-links a {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }
    
    .mobile-nav-cta {
        margin: 1rem;
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 0.6rem 2%;
        min-height: 60px;
    }
    
    .logo {
        font-size: 1rem;
        font-weight: 700;
    }
    
    .logo-icon img {
        width: 40px;
        margin-right: 10px;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .mobile-menu span {
        width: 24px;
        height: 3px;
    }
    
    .mobile-nav-panel {
        width: 95%;
        max-width: 220px;
    }
    
    .mobile-nav-header {
        padding: 0.8rem;
    }
    
    .mobile-nav-title {
        font-size: 0.9rem;
    }
    
    .mobile-nav-close {
        width: 22px;
        height: 22px;
        font-size: 1rem;
    }
    
    .mobile-nav-links {
        padding: 0.8rem;
    }
    
    .mobile-nav-links li {
        margin-bottom: 0.6rem;
    }
    
    .mobile-nav-links a {
        font-size: 0.9rem;
        padding: 0.3rem 0;
    }
    
    .mobile-nav-cta {
        margin: 0.8rem;
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    nav {
        padding: 0.5rem 1%;
        min-height: 55px;
    }
    
    .logo {
        font-size: 0.9rem;
        font-weight: 700;
    }
    
    .logo-icon img {
        width: 35px;
        margin-right: 8px;
    }
    
    .logo-icon {
        width: 25px;
        height: 25px;
    }
    
    .mobile-menu span {
        width: 22px;
        height: 2px;
    }
    
    .mobile-nav-panel {
        width: 98%;
        max-width: 200px;
    }
    
    .mobile-nav-header {
        padding: 0.6rem;
    }
    
    .mobile-nav-title {
        font-size: 0.85rem;
    }
    
    .mobile-nav-close {
        width: 20px;
        height: 20px;
        font-size: 0.9rem;
    }
    
    .mobile-nav-links {
        padding: 0.6rem;
    }
    
    .mobile-nav-links li {
        margin-bottom: 0.5rem;
    }
    
    .mobile-nav-links a {
        font-size: 0.85rem;
        padding: 0.2rem 0;
    }
    
    .mobile-nav-cta {
        margin: 0.6rem;
        padding: 0.4rem;
        font-size: 0.75rem;
    }
}

/* Main Footer */
footer {
    background: var(--dark-gray);
    color: var(--coop-white);
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 3px solid var(--coop-orange);
    position: relative;
    overflow: hidden;
}

/* Orange accent line at top */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--coop-orange) 0%, 
        var(--coop-yellow) 50%, 
        var(--coop-orange) 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Footer Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Footer Main Grid */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* Footer Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer-logo {
    width: 80px;
    height: 80px;
    background: var(--coop-white);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid var(--coop-orange);
}

.footer-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--coop-yellow);
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--coop-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-gray);
    margin: 0;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--coop-orange);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: var(--coop-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.coop-icon {
    font-size: 1.3rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-3px); }
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: var(--coop-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--coop-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--light-gray);
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--coop-orange);
    color: var(--coop-white);
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    border-color: var(--coop-orange);
}

/* Footer Links Sections */
.footer-sections {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--coop-yellow);
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links h4::before,
.footer-contact h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--coop-orange);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--coop-orange);
    border-radius: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--coop-orange);
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--coop-white);
    transform: translateX(8px);
    background: var(--coop-blue);
    padding: 5px 12px;
    border-radius: 6px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -8px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--light-gray);
    font-size: 1rem;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: var(--coop-blue);
    color: var(--coop-white);
    transform: translateX(5px);
    border-color: var(--coop-orange);
}

.contact-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--coop-orange);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--coop-orange);
    padding: 30px 0 20px;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--coop-orange) 20%, 
        var(--coop-yellow) 50%, 
        var(--coop-orange) 80%, 
        transparent 100%);
    animation: shimmer 4s ease-in-out infinite;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}
.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--coop-orange);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--coop-white);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}
.contact_span{
    color: var(--coop-white);
}
.footer-bottom-content p{
    color: var(--coop-white);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-sections {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-main {
        gap: 25px;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 0 15px;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-brand p {
        font-size: 0.95rem;
    }
    
    .footer-logo {
        width: 60px;
        height: 60px;
        padding: 10px;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
    
    .contact-item {
        font-size: 0.95rem;
        padding: 10px;
    }
    
    .social-links {
        justify-content: center;
    }
}
