/* assets/css/header-footer.css */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* Header */
.nt-header {
    width: 100%;
    height: 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #eae8e5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
}
.nt-nav-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nt-nav-left {
    display: flex;
    align-items: center;
    height: 60px;
}
.nt-logo {
    display: flex;
    align-items: center;
    margin-right: 40px;
    text-decoration: none;
    color: #141414;
    flex-shrink: 0;
}
.nt-logo img {
    height: 44px;
    width: auto;
    display: block;
}
.nt-logo-fallback {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #141414;
    white-space: nowrap;
}

/* Desktop Nav */
.nt-nav {
    display: flex;
    gap: 4px;
    align-items: center;
    height: 60px;
}
.nt-nav-group {
    height: 60px;
    display: flex;
    align-items: center;
    position: static;
}
.nt-nav-link-box {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
    color: #141414;
    text-decoration: none;
    white-space: nowrap;
}
.nt-arrow-caret {
    width: 6px;
    height: 6px;
    border-right: 2px solid #141414;
    border-bottom: 2px solid #141414;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: all 0.15s;
    flex-shrink: 0;
}
.nt-nav-group:hover .nt-nav-link-box {
    border-color: #eae8e5;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.nt-nav-group:hover .nt-arrow-caret {
    transform: rotate(225deg);
    border-color: #C06126;
    margin-top: 2px;
}

/* Megamenu */
.nt-megamenu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    background-color: #ffffff;
    border-bottom: 1px solid #eae8e5;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    z-index: 9999;
    cursor: default;
}
.nt-nav-group:hover .nt-megamenu { display: block; }
.nt-mega-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    min-height: 340px;
}
.nt-mega-main {
    flex: 1;
    padding: 36px 40px;
}
.nt-mega-section-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #9c9a96;
    margin-bottom: 20px;
    border-bottom: 1px solid #eae8e5;
    padding-bottom: 12px;
}
.nt-mega-links-grid {
    display: grid;
    gap: 8px;
}
.nt-mega-menu-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.nt-mega-icon-box {
    width: 48px;
    height: 48px;
    border: 1px solid #eae8e5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    background-color: #ffffff;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.nt-mega-icon-box svg {
    width: 22px;
    height: 22px;
    stroke: #141414;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transition: stroke 0.2s ease;
}
.nt-mega-item-text {
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.nt-mega-item-title {
    font-size: 15px;
    font-weight: 600;
    color: #141414;
    line-height: 1.2;
}
.nt-mega-item-desc {
    font-size: 13px;
    color: #6b6a68;
    line-height: 1.2;
}
.nt-mega-menu-item:hover {
    background-color: #f5f4f2;
}
.nt-mega-menu-item:hover .nt-mega-icon-box {
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.nt-mega-menu-item:hover .nt-mega-icon-box svg {
    stroke: #C06126;
}
.nt-mega-side {
    width: 300px;
    background-color: #f7f6f5;
    padding: 36px 32px;
    border-left: 1px solid #eae8e5;
    flex-shrink: 0;
}
.nt-mega-side-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
    color: #141414;
}
.nt-mega-side-img {
    width: 100%;
    height: 130px;
    border-radius: 8px;
    margin-bottom: 16px;
    object-fit: cover;
    display: block;
}
.nt-mega-side-img-placeholder {
    width: 100%;
    height: 130px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nt-mega-side p {
    font-size: 13px;
    color: #6b6a68;
    margin-bottom: 12px;
    line-height: 1.5;
    text-align: left;
}
.nt-link-orange {
    color: #C06126;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.nt-link-orange:hover { text-decoration: underline; }

/* CTA Button */
       .nt-btn { background: var(--theme-brown); color: #ffffff; font-size: 14px; font-weight: 700; padding: 8px 24px; border-radius: 6px; border: none; cursor: pointer; transition: opacity 0.2s; display: inline-block; white-space: nowrap; text-decoration: none; letter-spacing: 0.3px; font-family: var(--font-heading); }
.nt-btn:hover { opacity: 0.88; color: #fff; }

/* Mobile hamburger */
.nt-mobile-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #141414;
    background: none;
    border: none;
    padding: 4px;
}

/* ===== NEW FOOTER STYLES ===== */
.nt-footer {
    background-color: #050505;
    color: #ffffff;
    padding: 80px 0 0 0;
}
.nt-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.nt-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 64px;
}
.nt-footer-col h5 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
}
.nt-footer-col a {
    display: block;
    font-size: 13px;
    color: #a3a3a3;
    margin-bottom: 10px;
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Roboto', sans-serif;
}
.nt-footer-col a:hover { color: #ffffff; }
.nt-footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    text-decoration: none;
}
.nt-footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}
.nt-footer-logo:hover img {
    filter: none;
}
.nt-footer-logo-text {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -1px;
    color: #ffffff ;
    font-family: 'Nunito', sans-serif;
    transition: color 0.3s ease;
}
.nt-footer-logo:hover .nt-footer-logo-text {
    color: #C06126;
}
.nt-footer-desc {
    font-size: 13px;
    color: #6b6a68;
    line-height: 1.7;
    text-align: left;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}
.nt-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #1f1f1f;
    padding: 24px 0 32px 0;
}
.nt-footer-social {
    display: flex;
    gap: 20px;
}
.nt-footer-social a {
    font-size: 13px;
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.2s;
}
.nt-footer-social a:hover { color: #ffffff; }
.nt-footer-copy {
    font-size: 13px;
    color: #6b6a68;
    font-family: 'Roboto', sans-serif;
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float i {
    color: #ffffff !important; 
    margin-top: 2px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }
}

/* ===== MOBILE OVERLAY (new) ===== */
.nt-mobile-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.4s ease;
}
.nt-mobile-overlay.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}
.nt-mob-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}
.nt-mob-close {
    font-size: 15px;
    font-weight: 700;
    color: #C06126;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
}
.nt-mob-body { flex: 1; overflow-y: auto; }
.nt-mob-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #141414;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
}
.nt-mob-link i { color: #C06126; font-size: 14px; }
.nt-mob-footer {
    padding: 20px 24px;
    border-top: 1px solid #eee;
}
.nt-mob-cta {
    display: block;
    width: 100%;
    padding: 8px;
    text-align: center;
    background: #C06126;
    color: #fff;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .nt-nav { display: none; }
    .nt-btn.nt-desktop-btn { display: none; }
    .nt-mobile-btn { display: block; }
    .nt-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
    .nt-nav-container { padding: 0 20px; }
    .nt-footer-container { padding: 0 20px; }
    .nt-footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .nt-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}