:root {
    --blue-1: #029df6;
    --blue-2: #68bff1;
    --primary-gold: #b38e44;
    --deep-black: #0f0f0f;
    --soft-white: #faf9f6;
    --muted-gold: rgba(179, 142, 68, 0.08);
    --serif-font: 'Cormorant Garamond', serif;
    --sans-font: 'Inter', sans-serif;
    --jt-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            --sky-blue: #029df6;
            --azure-light: #e0f2fe;
            --electric-blue: #38bdf8;
            --slate-900: #0f172a;
            --slate-800: #1e293b;
}

/* body {
    font-family: var(--sans-font);
    color: var(--deep-black);
    background-color: var(--soft-white);
    overflow-x: hidden;
    line-height: 1.6;
} */

h1, h2, h3 { font-family: var(--serif-font); font-weight: 700; }
.gold-accent { color: var(--blue-2); font-style: italic; }

/* --- NAVIGATION WRAPPER --- */

.jt-mega-menu-wrapper {
    position: fixed;
    top: 0; 
    left: 0; 
    right: 0;
    z-index: 2000;
    transition: var(--jt-transition);
    background: transparent;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.jt-mega-menu-wrapper.jt-scrolled {
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.jt-mega-menu-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.jt-mega-menu-brand {
    font-family: var(--sans-font);
    text-decoration: none;
    color: white;
    z-index: 2005; 
    transition: color 0.3s ease;
    display: flex;
    justify-items: center;
    align-items: center;
    text-transform: uppercase;
}

.jt-mega-menu-brand .brand-icon{
    width: 26px;
}

.jt-mega-menu-brand .brand-icon img{
    width: 26px;
}
.jt-mega-menu-brand .brand-text{
    width: calc(100% -26px);
    padding-left: 15px;
}
.jt-mega-menu-brand .brand-text .text-1{
    font-weight: 900 !important;
}
.jt-mega-menu-brand .brand-text .text-2{
    font-weight: 400;
}

.jt-mega-menu-wrapper.jt-scrolled .jt-mega-menu-brand {
    color: var(--deep-black);
}

/* --- DESKTOP STYLING --- */
@media (min-width: 992px) {
    .jt-mega-menu-list { 
        display: flex !important; 
        list-style: none; 
        margin: 0; 
        padding: 0; 
        gap: 0.5rem; 
        align-items: center; 
    }
    
    .jt-mega-menu-item { position: static; } 
    
    .jt-mega-menu-link { 
        padding: 1rem 0.5rem; 
        font-size: 0.75rem; 
        font-weight: 600; 
        text-transform: uppercase; 
        letter-spacing: 1.5px; 
        text-decoration: none; 
        color: white; 
        opacity: 0.9;
        transition: 0.3s;
        display: flex;
        align-items: center;
        cursor: pointer;
        white-space: nowrap;
    }
    
    .jt-mega-menu-wrapper.jt-scrolled .jt-mega-menu-link {
        color: var(--deep-black);
        opacity: 0.7;
    }

    .jt-mega-menu-link i { margin-left: 5px; width: 12px; }
    .jt-mega-menu-link:hover { opacity: 1; color: var(--blue-2) !important; }

    /* Full Width Dropdown (Mega Menu) */
    .jt-mega-menu-content {
        position: absolute; 
        top: 100%; 
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        width: 100vw; 
        background: white; 
        box-shadow: 0 30px 60px rgba(0,0,0,0.08); 
        padding: 4rem 2rem;
        visibility: hidden; 
        opacity: 0; 
        transition: var(--jt-transition);
        border-top: 1px solid rgba(0,0,0,0.05);
        z-index: 1999;
    }

    .jt-mega-menu-dropdown:hover .jt-mega-menu-content { 
        visibility: visible; 
        opacity: 1; 
        transform: translateX(-50%) translateY(0); 
    }

    /* Standard Dropdown List Style */
    .jt-simple-dropdown {
        position: relative !important;
    }

    .jt-simple-dropdown-list {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: white;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        padding: 1rem 0;
        margin: 0;
        list-style: none;
        visibility: hidden;
        opacity: 0;
        transform: translateY(10px);
        transition: var(--jt-transition);
        border-radius: 0 0 12px 12px;
    }

    .jt-simple-dropdown:hover .jt-simple-dropdown-list {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .jt-simple-dropdown-list a {
        display: block;
        padding: 0.7rem 1.5rem;
        color: var(--deep-black);
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: 0.2s;
    }

    .jt-simple-dropdown-list a:hover {
        background: var(--muted-gold);
        color: var(--blue-2);
        padding-left: 1.8rem;
    }

    .jt-mega-menu-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .jt-mega-menu-grid { 
        display: grid; 
        grid-template-columns: repeat(4, 1fr); 
        gap: 2.5rem; 
        padding: 30px;
    }
    .jt-menu-col{
        padding: 30px !important;
    }
    .jt-menu-col-title {
        font-family: var(--serif-font);
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: var(--blue-2);
        text-transform: uppercase;
    }

    .jt-menu-item-link {
        display: flex; 
        align-items: center; 
        text-decoration: none; 
        color: var(--deep-black) !important;
        padding: 0.6rem 0;
        transition: 0.2s;
    }
    .jt-menu-item-link:hover { padding-left: 5px; color: var(--blue-2) !important; }
    .jt-menu-item-text h6 { margin: 0; font-size: 0.85rem; font-weight: 600; }
    .jt-menu-item-text p { margin: 0; font-size: 0.75rem; color: #777; }

    .jt-mega-menu-toggle, .jt-mobile-header { display: none !important; }
}

/* --- MOBILE STYLING --- */
@media (max-width: 991.98px) {
    .jt-mega-menu-toggle { 
        display: block; 
        background: none; 
        border: none; 
        font-size: 1.5rem; 
        cursor: pointer; 
        color: white; 
        transition: color 0.3s;
        z-index: 2010;
    }

    .jt-mega-menu-wrapper.jt-scrolled .jt-mega-menu-toggle {
        color: var(--deep-black);
    }

    .jt-mega-menu-list {
        position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
        background: white; transition: var(--jt-transition);
        display: block; list-style: none; padding: 0; margin: 0;
        overflow-y: auto; overflow-x: hidden; z-index: 3000;
    }
    .jt-mega-menu-list.jt-active { right: 0; }

    .jt-mega-menu-item { border-bottom: 1px solid rgba(0,0,0,0.05); width: 100%; }
    .jt-mega-menu-link {
        display: flex; align-items: center; justify-content: space-between;
        padding: 1.5rem 2rem; font-size: 1.1rem; font-family: var(--serif-font);
        font-weight: 600; text-decoration: none; 
        color: var(--deep-black) !important;
    }

    .jt-mega-menu-content {
        position: fixed; 
        top: 0; 
        left: 100%; 
        width: 100%; 
        height: 100vh;
        background: white; 
        transition: var(--jt-transition);
        z-index: 4000; 
        display: flex;
        flex-direction: column;
    }
    .jt-mega-menu-content.jt-level-active { left: 0; }

    .jt-mobile-header {
        display: flex; 
        align-items: center; 
        justify-content: space-between;
        padding: 1rem 1.5rem; 
        border-bottom: 1px solid rgba(0,0,0,0.1);
        background: #ffffff;
        width: 100%;
        min-height: 70px;
        flex-shrink: 0;
    }
    
    .jt-back-btn {
        cursor: pointer;
        color: var(--deep-black);
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: -5px;
    }

    .jt-mobile-header span { 
        font-weight: 800; 
        text-transform: uppercase; 
        font-size: 0.8rem; 
        letter-spacing: 2px; 
        color: var(--deep-black); 
    }
    

    .jt-mega-menu-container {
        overflow: auto;
    }

    .jt-mega-menu-grid {
        flex-grow: 1;
        overflow-y: auto;
        padding: 1rem 0;
    }
    
    .jt-menu-col{
        padding-left: 15px;
        padding-right: 15px;
        
    }
    .jt-menu-col-title {
        font-size: 80%;
        text-transform: uppercase;
        font-weight: 600;
    }

    .jt-menu-item-link {
        display: flex; align-items: center; 
        padding: 1.2rem 2rem;
        text-decoration: none; 
        color: var(--deep-black) !important;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .jt-menu-col .jt-menu-item-link{
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .jt-menu-col .block-links{

    }
    .jt-menu-col .block-links a{
        display: block;
        font-weight: 600;
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
        
        border-bottom: 1px solid rgba(0,0,0,0.05);
        margin-bottom: 15px;
    }

    .jt-mega-menu-brand{
        font-size: 12px;
    }
    .jt-mega-menu-brand .brand-icon{
        width: 18px;
    }
    
    .jt-mega-menu-brand .brand-icon img{
        width: 18px;
    }
    .jt-mega-menu-brand .brand-text{
        width: calc(100% -18px);
        padding-left: 10px;
    }
    .jt-mega-menu-brand .brand-text .text-1{
        font-weight: 900 !important;
    }
    .jt-mega-menu-brand .brand-text .text-2{
        font-weight: 400;
    }
}

/* --- PAGE CONTENT --- */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; background: var(--deep-black); color: white; overflow: hidden; padding-top: 100px; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; transition: transform 0.1s ease-out; }
.section-padding { padding: clamp(80px, 12vw, 160px) 0; }

.bento-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bento-item { background: white; border-radius: 30px; padding: 2.5rem; display: flex; flex-direction: column; justify-content: flex-end; border: 1px solid rgba(0,0,0,0.03); color: var(--deep-black); }
.bento-1 { grid-column: span 2; grid-row: span 2; background: var(--muted-gold); }
.bento-2 { grid-column: span 2; }

.jt-btn-gold { 
    background: var(--blue-2); color: white; border: none; 
    padding: 0.8rem 2rem; border-radius: 50px; font-weight: 700; 
    text-transform: uppercase; font-size: 0.7rem; letter-spacing: 1.5px;
    transition: 0.3s;
}

.jt-support-btn { 
    background: var(--blue-1); color: white; border: none; 
    padding: 0.8rem 1.5rem; 
    border-radius: 50px; font-weight: 700; 
    text-transform: uppercase; font-size: 0.7rem; letter-spacing: 1.5px;
    transition: 0.3s;
}
.jt-support-btn:hover {
    color: greenyellow;
}

.jt-account-btn { 
    display: inline-block;
    /* background-color: #ffffff; */
    transition: 0.3s;
    color: white;
    text-align: center;
    padding-top: 1px;
    border: 2px solid white;
    border-radius: 50%;
    width: 36px;
    height: 36px;

}
.jt-mega-menu-wrapper.jt-scrolled .jt-account-btn {
    color: var(--blue-1);
    border-color: var(--blue-1);
}
.jt-account-btn:hover {
    color: greenyellow;
    border-color: greenyellow;
}
.jt-mega-menu-wrapper.jt-scrolled .jt-account-btn:hover {
    color: green;
    border-color: green;
}

.reveal { opacity: 0; transform: translateY(30px); transition: all 1s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
@media (max-width: 991.98px) {
    .jt-account-btn {
        color: var(--blue-1);
        border-color: var(--blue-1);
    }
}