
/* ===== HONIKS FOOTER ===== */
.honiks-footer {
    background: #0d1b2a;
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
    font-size: 0.92em;
    line-height: 1.7;
    margin: 0;
    max-width: 100%;
}
.honiks-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}
.honiks-footer h4 {
    color: #ffffff;
    font-size: 1.05em;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.honiks-footer p {
    margin: 0 0 8px;
    color: rgba(255,255,255,0.6);
}
.honiks-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.honiks-footer ul li {
    margin-bottom: 6px;
}
.honiks-footer a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.honiks-footer a:hover {
    color: #e74c3c;
    text-decoration: none;
}
.honiks-footer-company {
    color: rgba(255,255,255,0.45) !important;
    font-size: 0.85em;
    margin-top: 12px !important;
}
.honiks-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    padding: 20px;
    font-size: 0.85em;
    color: rgba(255,255,255,0.35);
}
@media (max-width: 768px) {
    .honiks-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}
@media (max-width: 480px) {
    .honiks-footer-grid {
        grid-template-columns: 1fr;
    }
}
/* Hide default Astra footer */
.ast-footer-copyright, .site-below-footer-wrap {
    display: none !important;
}












@media (max-width: 768px) {
    
}











.honiks-footer-form .honiks-footer-field {
    position: relative;
    margin-bottom: 10px;
}
.honiks-footer-field svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.25);
    pointer-events: none;
}
.honiks-footer-field-full svg {
    top: 14px;
    transform: none;
}
.honiks-footer-form input {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px 12px 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: #fff;
    font-size: 0.88em;
    font-family: inherit;
    transition: all 0.3s;
}
.honiks-footer-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 14px 12px 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: #fff;
    font-size: 0.88em;
    font-family: inherit;
    resize: vertical;
    min-height: 50px;
    max-height: 100px;
    transition: all 0.3s;
}
.honiks-footer-form input::placeholder,
.honiks-footer-form textarea::placeholder {
    color: rgba(255,255,255,0.28);
}
.honiks-footer-form input:hover,
.honiks-footer-form textarea:hover {
    border-color: rgba(255,255,255,0.2);
}
.honiks-footer-form input:focus,
.honiks-footer-form textarea:focus {
    outline: none;
    border-color: #2980b9;
    background: rgba(41,128,185,0.08);
    box-shadow: 0 0 0 3px rgba(41,128,185,0.1);
}
.honiks-footer-form input:focus + svg,
.honiks-footer-form input:focus ~ svg,
.honiks-footer-field:focus-within svg {
    color: #2980b9;
}
.honiks-footer-form button {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.92em;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    letter-spacing: 0.3px;
}
.honiks-footer-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(231,76,60,0.4);
}
.honiks-footer-form button svg {
    transition: transform 0.3s;
}
.honiks-footer-form button:hover svg {
    transform: translateX(3px);
}
