/* Contact Footer Styles */
.fx-contact-footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Footer Slider */
.fx-footer-slider {
    position: relative;
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-bottom: 60px;
}

.fx-slider-text {
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
    animation: slideLeft 30s linear infinite;
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes slideLeft {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.fx-slider-text .filled {
    color: white;
    margin: 0 2rem;
}

.fx-slider-text .outline {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 2rem;
}

.fx-slider-text .dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    margin: 0 1rem;
}

.contact-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

    .contact-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
        animation: float 20s infinite linear;
    }

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-100px);
    }
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.contact-left h2 {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: white;
    font-weight: 600;
    line-height: 1.2;
}

/* Contact Form */
.contact-form {
    max-width: 500px;
}

.form-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

    .checkbox-item:hover {
        color: white;
    }

    .checkbox-item input[type="checkbox"] {
        display: none;
    }

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #666;
    border-radius: 3px;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: #4CAF50;
    border-color: #4CAF50;
}

    .checkbox-item input[type="checkbox"]:checked + .checkmark::after {
        content: '✓';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 12px;
        font-weight: bold;
    }

/* Form Groups */
.form-group {
    margin-bottom: 24px;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 16px 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid #666;
        color: white;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-bottom-color: #4CAF50;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #888;
        }

    .form-group textarea {
        resize: vertical;
        min-height: 100px;
    }

/* Send Button */
.contact-send-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border: 2px solid #4CAF50;
    border-radius: 50%;
    background: transparent;
    color: #4CAF50;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

    .contact-send-btn:hover {
        background: #4CAF50;
        color: white;
        transform: scale(1.05);
    }

.contact-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-illustration {
    width: 100%;
    max-width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.panda-svg {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    right: 0px;
    position: absolute;
    width: 700px;
    object-fit: cover;
    height: 900px;
    border-bottom: 1px solid #00000057;
    padding-top: 5rem;
}

    .panda-svg polygon,
    .panda-svg circle {
        transition: all 0.3s ease;
    }

.contact-illustration:hover .panda-svg polygon {
    transform: scale(1.02);
}

/* Footer Sections */
.fx-footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.fx-footer-section {
    display: flex;
    flex-direction: column;
}

    .fx-footer-section .fx-footer-brand {
        margin-bottom: 24px;
    }

        .fx-footer-section .fx-footer-brand img {
            filter: brightness(0) invert(1);
        }

    .fx-footer-section p {
        color: #ccc;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .fx-footer-section h3 {
        font-family: 'Museo Sans 500 Medium', serif;
        font-size: 1.3rem;
        margin-bottom: 24px;
        color: white;
        font-weight: 600;
        position: relative;
    }

.fx-neon-title {
    position: relative;
    display: inline-block;
}

    .fx-neon-title::before {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        color: rgba(255, 255, 255, 0.1);
        z-index: -1;
        transform: translate(2px, 2px);
    }

.fx-footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .fx-footer-section ul li {
        margin-bottom: 12px;
    }

        .fx-footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

            .fx-footer-section ul li a:hover {
                color: white;
                transform: translateX(5px);
            }

            .fx-footer-section ul li a::before {
                content: '';
                position: absolute;
                left: -15px;
                top: 50%;
                transform: translateY(-50%);
                width: 0;
                height: 1px;
                background: white;
                transition: width 0.3s ease;
            }

            .fx-footer-section ul li a:hover::before {
                width: 10px;
            }

.fx-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.fx-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    .fx-footer-bottom-links a {
        color: #ccc;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

        .fx-footer-bottom-links a:hover {
            color: white;
        }

    .fx-footer-bottom-links span {
        color: #666;
    }

.fx-footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.fx-footer-bottom a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .fx-footer-bottom a:hover {
        color: white;
    }

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
    position: relative;
    z-index: 2;
}

.info-section h4 {
    font-family: 'Museo Sans 500 Medium', serif;
    font-size: 1.5rem;
    margin-bottom: 24px;
    color: white;
    font-weight: 600;
}

.info-item {
    margin-bottom: 16px;
}

    .info-item span {
        color: #ccc;
        font-size: 0.95rem;
        line-height: 1.6;
        transition: color 0.3s ease;
    }

    .info-item:hover span {
        color: white;
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .fx-footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .fx-footer-slider {
        height: 50px;
    }

    .fx-slider-text {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .contact-left h2 {
        font-size: 3rem;
    }

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .fx-footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .fx-footer-slider {
        height: 45px;
        margin-bottom: 40px;
    }

    .fx-slider-text {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .fx-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .fx-footer-bottom-links {
        justify-content: center;
        gap: 10px;
    }

    .contact-footer {
        padding: 80px 0 40px;
    }

    .contact-content {
        margin-bottom: 60px;
    }

    .contact-left h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .form-checkboxes {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-illustration {
        max-width: 300px;
        height: 300px;
    }

    .contact-send-btn {
        font-size: 0.9rem;
    }

    .info-section h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .fx-footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fx-footer-slider {
        height: 40px;
        margin-bottom: 30px;
    }

    .fx-slider-text {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }

    .fx-footer-section h3 {
        font-size: 1.1rem;
    }

    .contact-left h2 {
        font-size: 2rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px 0;
        font-size: 0.9rem;
    }

    .contact-illustration {
        max-width: 250px;
        height: 250px;
    }

    .contact-send-btn {
        font-size: 0.8rem;
    }

    .info-item span {
        font-size: 0.85rem;
    }
}

@keyframes geometricFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(180deg);
    }
}

.panda-svg circle:nth-child(odd) {
    animation: geometricFloat 6s ease-in-out infinite;
}

.panda-svg circle:nth-child(even) {
    animation: geometricFloat 8s ease-in-out infinite reverse;
}

@media screen and (max-width: 1024px){
    .panda-svg {
        width: 300px;
        object-fit: cover;
        height: 400px;
    }
    .info-section h4 {
        color: #fff !important;
    }
    .info-item span{
        color: #fff!important;
    }
    .contact-info {
        padding-top: 160px;
    }
}

.absolute-right-white-bg {
    position: absolute;
    background: #fff;
    z-index: 1;
    width: 50%;
    right: 0;
    height: 1200px;
    top: 0;
}

.absolute-circle {
    width: 900px;
    height: 900px;
    position: absolute;
    z-index: 2;
    background: black;
    border-radius: 50%;
    right: -500px;
    padding-bottom: 3rem;
}
