/* ============================================
   6. FOOTER & CONTACT
   ============================================ */

footer {
    background: #1a1a1a;
    color: white;
    padding: 6rem 0 2rem;
    position: relative;
}

body.dark-mode footer {
    background: #000;
}

footer .section-line {
    background: #d4ff00;
}

footer .section-label {
    color: #d4ff00;
}

footer::before {
    content: '04';
    position: absolute;
    font-size: 12rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    top: 2rem;
    left: 15%;
    z-index: 0;
    line-height: 1;
}

.footer-content {
    width: 70%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content h2 {
    font-size: 5rem;
    font-weight: 400;
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.footer-subtitle {
    font-size: 1.26rem;
    color: #999;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.7;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info p {
    color: #999;
    margin-bottom: 0.5rem;
    line-height: 1.8;
    font-size: 1.14rem;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: white;
}

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

.footer-links a {
    color: #999;
    text-decoration: none;
    display: block;
    padding: 0.3rem 0;
    font-size: 1.08rem;
}

.footer-links a:hover {
    color: #d4ff00;
}

/* Contact Form */
.contact-form {
    margin-bottom: 2rem;
}

.contact-form form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid #444;
    color: white;
    font-size: 1.08rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d4ff00;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-form button {
    padding: 1rem 3rem;
    background: #d4ff00;
    color: #000;
    border: none;
    font-size: 1.08rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    justify-self: start;
}

.contact-form button:hover {
    background: #fff;
    transform: translateX(5px);
}

.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: rgba(212, 255, 0, 0.2);
    color: #d4ff00;
    border: 1px solid #d4ff00;
}

.form-message.error {
    background: rgba(255, 0, 0, 0.2);
    color: #ff6b6b;
    border: 1px solid #ff6b6b;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.social-links a {
    width: 35px;
    height: 35px;
    border: 1px solid #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
}

.social-links a:hover {
    border-color: #d4ff00;
    color: #d4ff00;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.8rem;
}

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

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-label {
    color: #999;
    font-size: 0.8rem;
    font-weight: 500;
}

.lang-option {
    background: transparent;
    border: none;
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    transition: color 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.lang-option:hover {
    color: #d4ff00;
}

.lang-option.active {
    color: #d4ff00;
}
