/* =====================================================
   MODERN DARK FOOTER STYLES
   ===================================================== */
.nxt-footer {
    position: relative;
    color: #8b949e;
    padding: 80px 0 30px;
    overflow: hidden;
    color: #8b949e;
    padding: 80px 0 30px;
    overflow: hidden;
    background-color: #0E104B;
}

.nxt-footer-circle {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

/* Newsletter Section - Hidden */
.nxt-newsletter-row {
    display: none !important;
}

.nxt-newsletter-title {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.nxt-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nxt-form-label {
    color: #8b949e;
    font-size: 13px;
}

.nxt-form-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nxt-email-input {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 0;
    color: #fff;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.nxt-email-input:focus {
    border-color: #C9A962;
}

.nxt-email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.nxt-submit-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nxt-submit-btn:hover {
    color: #C9A962;
}

/* Footer Logo */
.nxt-footer-logo {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-logo-link {
    margin-left: 0;
}

@media (min-width: 992px) {
    .footer-logo-link {
        margin-left: -40px;
    }
}

.nxt-footer-brand-text {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: #fff;
    line-height: 1.2;
    margin-top: 5px;
    letter-spacing: 1px;
}

.nxt-footer-brand-text span {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #ddd;
    letter-spacing: 3px;
    display: block;
    margin-top: 5px;
    font-weight: 400;
}

/* Address & Contact */
.nxt-address {
    color: #8b949e;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.nxt-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
}

.nxt-contact-item i {
    color: #C9A962;
}

.nxt-contact-item a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nxt-contact-item a:hover {
    color: #C9A962;
}

/* Footer Titles */
.nxt-footer-title {
    color: #C9A962;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(201, 169, 98, 0.3);
    display: inline-block;
    padding-bottom: 10px;
}

/* Footer Links */
.nxt-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nxt-footer-links li {
    margin-bottom: 22px;
}

.nxt-footer-links a {
    color: #8b949e;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: block;
}

.nxt-footer-links a::before {
    display: none;
}

.nxt-footer-links a:hover {
    color: #C9A962;
    padding-left: 35px;
}

/* Footer Bottom */
.nxt-footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.nxt-footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: #6e7681;
}

.nxt-footer-bottom a {
    color: #C9A962;
    text-decoration: none;
}

/* Social Icons Styling */
.nxt-footer-social a {
    color: #C9A962;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 22px;
}

.nxt-footer-social a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Phone Sticky Button */
.phone-sticky {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #C9A962;
    color: #0A1628;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.phone-sticky:hover {
    background-color: #ffffff;
    color: #C9A962;
    transform: scale(1.1);
    border: 2px solid #C9A962;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-sticky:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Modal Styles */
#teklifModal .modal-content {
    background-color: #ffffff;
    color: #343a40;
    border-radius: 15px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 26px 10px 26px 10px;
}

#teklifModal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
    position: relative;
}

#teklifModal .modal-title {
    font-weight: 700;
    color: #343a40;
    width: 100%;
}

#teklifModal .btn-close {
    color: #6c757d;
    opacity: 0.7;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

#teklifModal .btn-close:hover {
    opacity: 1;
}

#teklifModal .modal-body p {
    color: #6c757d;
    font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 991px) {
    .nxt-newsletter-title {
        font-size: 26px;
    }

    .nxt-footer-circle {
        display: none;
    }
}

@media (max-width: 576px) {
    .nxt-form-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .nxt-submit-btn {
        justify-content: center;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 5px;
    }
}