/* ================================
   CUSTOM CURSOR
================================ */
.cursor {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition:
        width 0.2s,
        height 0.2s;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: all 0.15s ease;
}

body.image-hover .cursor {
    opacity: 0 !important;
}

body.image-hover .cursor-ring {
    border: none;
    background: #fff;
}

/* ================================
   FOOTER
================================ */
.footer {
    background: #f5f5f5;
    border-top: 1px solid #e0e0e0;
    padding: 2.5rem 3rem;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #555;
}

.socials-col {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #555;
    text-decoration: none;
    transition:
        color 0.2s,
        background 0.2s;
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.social-btn:hover {
    color: #fff;
}
.social-btn.whatsapp:hover {
    background: #25d366;
}
.social-btn.facebook:hover {
    background: #1877f2;
}
.social-btn.behance:hover {
    background: #1769ff;
}
.social-btn.youtube:hover {
    background: #ff0000;
}

.form-col h4 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #222;
}

.form-col input,
.form-col textarea {
    width: 100%;
    margin-bottom: 8px;
    font-size: 13px;
    font-family: inherit;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 7px 10px;
    outline: none;
    resize: none;
}

.form-col textarea {
    height: 64px;
}

.form-col input:focus,
.form-col textarea:focus {
    border-color: #aaa;
}
