/* ========================================
   Contact Button Section
   ======================================== */

.contact-section {
    width: 100%;
    background-color: #fff;
}

.contact-button {
    display: block;
    width: 100%;
    padding: 20px 60px 20px 0;
    background-color: #fff;
    color: #000;
    border: none;
    border-top: 1px solid #000;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: none;
    transition: all 0.4s ease;
    font-family: 'Poppins', sans-serif;
    position: relative;
    text-align: center;
    text-decoration: none;
}

.contact-button::after {
    content: '→';
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    transition: all 0.4s ease;
}

.contact-button:hover {
    background-color: #000;
    color: #fff;
}

.contact-button:hover::after {
    right: 30px;
}

/* ========================================
   Marquee Text
   ======================================== */

.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-text {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    padding-right: 80px;
    letter-spacing: -1px;
    -webkit-text-stroke: 0.5px #000;
    text-stroke: 0.5px #000;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   Footer
   ======================================== */

footer {
    background-color: #fff;
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-section {
    flex: 1;
}

.footer-logo {
    height: 50px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 100%;
    width: auto;
}

.footer-section-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.office-info {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #666;
}

.office-info strong {
    display: block;
    color: #000;
    margin-bottom: 5px;
}

.footer-info {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.info-item {
    flex: 1;
}

.info-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
}

.info-value {
    font-size: 13px;
    color: #000;
}

.footer-copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 12px;
    color: #666;
}

/* ========================================
   Fixed Contact Button (Bottom Left)
   ======================================== */

.fixed-contact-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    padding: 8px 16px;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: none;
    transition: all 0.3s ease;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    border-radius: 20px;
}

.fixed-contact-btn.on-dark {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

.fixed-contact-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.fixed-contact-btn.on-dark:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}
