/**
 * Header & Components Styles
 * Theme: Dark / Gold (#D4AF37)
 */

.zps-main-header {
    background: #000000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 5%;
    backdrop-filter: blur(10px);
}

.zps-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.zps-logo {
    height: 40px;
    /* Standard website logo height */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.zps-logo:hover {
    transform: scale(1.05);
}

.zps-footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.zps-logo-placeholder span {
    color: #D4AF37;
}

.zps-nav {
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 0 40px;
}

.zps-nav a {
    color: #94A3B8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    white-space: nowrap;
    /* Prevent line breaks */
    letter-spacing: 0.5px;
}

.zps-nav a:hover {
    color: #D4AF37;
}

.zps-header-actions {
    display: flex;
    gap: 15px;
}

.zps-btn-client,
.zps-btn-contact {
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.zps-btn-client {
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.zps-btn-contact {
    background: #D4AF37;
    color: #000;
}

.zps-btn-client:hover {
    background: rgba(255, 255, 255, 0.05);
}

.zps-btn-contact:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Mobile Menu */
.zps-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.zps-mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #D4AF37;
    transition: 0.3s;
}

/* WhatsApp Button - Orange Customization */
.zps-whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 60px !important;
    height: 60px !important;
    background: #D4AF37 !important;
    /* Matching Gold Theme */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4) !important;
    z-index: 999999 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.zps-whatsapp-float:hover {
    transform: scale(1.1) rotate(15deg);
    background: #25d366;
    /* Changes to original green on hover */
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    /* Make icon white on gold background */
}

.zps-whatsapp-float:hover .whatsapp-icon {
    filter: none;
    /* Original color on hover */
}

@media (max-width: 991px) {
    .zps-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000000;
        flex-direction: column;
        padding: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .zps-nav.active {
        display: flex;
    }

    .zps-header-actions {
        display: none;
    }

    .zps-mobile-toggle {
        display: flex;
    }
}

/* Footer Styles */
.zps-main-footer {
    background: #000000;
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #94A3B8;
    margin-top: 60px;
}

.zps-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.zps-footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.zps-footer-col ul {
    list-style: none;
    padding: 0;
}

.zps-footer-col ul li {
    margin-bottom: 12px;
}

.zps-footer-col ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s;
}

.zps-footer-col ul li a:hover {
    color: #D4AF37;
}

.zps-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .zps-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .zps-footer-grid {
        grid-template-columns: 1fr;
    }
}