/* ==============================
   1. CORE CSS VARIABLES (Change colors here for seasonal themes!)
   ============================== */
:root {
    --primary-navy: #0B1D2A;  
    --accent-gold: #E69D00;   
    --text-white: #FFFFFF;    
    --text-dark: #333333;     
    --light-bg: #F9F9F9;      
    --secondary-bg: #FFFFFF;
    
    /* Specific variables for training/legal pages */
    --card-bg: #1e293b;
    --card-hover: #334155;
    --text-muted: #cbd5e1;
    
    /* Contact Form variables */
    --input-border: #cbd5e1;
    --input-focus: #3b82f6;
}

/* ==============================
   2. GLOBAL STYLES & TYPOGRAPHY
   ============================== */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: var(--primary-navy); /* Base background set to navy for most inner pages */
    line-height: 1.6;
}

h1, h2, h3 { font-weight: 700; margin-top: 0; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Global Buttons */
.btn-gold {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s, transform 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-gold:hover {
    background-color: #f7b233;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-gold);
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--accent-gold);
    transition: transform 0.2s, background-color 0.3s, color 0.3s;
    display: inline-block;
}
.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    transform: scale(1.05);
}

/* ==============================
   3. HEADER & NAVIGATION
   ============================== */
header {
    background-color: var(--primary-navy);
    padding: 20px 0;
    position: fixed; 
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3); 
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-box { display: flex; align-items: center; text-decoration: none; }
.main-logo { max-height: 60px; margin-right: 15px; }
.site-title { color: var(--text-white); font-size: 1.5rem; margin: 0; font-weight: 600; }

nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 25px; }
nav a { text-decoration: none; color: var(--text-white); font-weight: 600; font-size: 1rem; transition: color 0.3s ease; }
nav a:hover { color: var(--accent-gold); }

.header-phone a {
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1.2rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.header-phone a:hover { color: var(--accent-gold); }

/* ==========================================
   4. INDEX (HOME) HERO - PREMIUM STYLING
   ========================================== */
.hero {
    /* Subtle rich gradient instead of flat navy */
    background: radial-gradient(circle at center, #0a2540 0%, #001220 100%);
    color: var(--text-white);
    padding: 140px 0 90px 0; 
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--accent-gold, #d4af37); /* Gold accent dividing line */
}

.hero h1 { 
    color: #ffffff; 
    font-size: 3.2rem; 
    font-weight: 700;
    margin-bottom: 15px; 
    letter-spacing: -0.5px;
}

/* Give the main keyword a gold highlight */
.hero h1 span.gold-text {
    color: var(--accent-gold, #d4af37);
}

.hero p.hero-subtitle { 
    font-size: 1.25rem; 
    max-width: 720px; 
    margin: 0 auto 30px auto; 
    color: #e2e8f0;
    line-height: 1.6;
}

/* HERO CARDS WITH GOLD ACCENTS */
.hero-cta-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.25); /* Subtle gold border */
    border-top: 4px solid var(--accent-gold, #d4af37); /* Prominent gold top accent */
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-cta-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 175, 55, 0.15); /* Soft gold glow */
}

/* Primary Gold Button Polish */
.btn-large {
    background: linear-gradient(135deg, #e6c200 0%, #d4af37 100%);
    color: #001220 !important;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    transition: all 0.2s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.5);
}/* ==============================
   5. TRAINING PAGE SPECIFICS
   ============================== */
.training-section { padding: 150px 0 80px 0; color: var(--text-white); }
.pj-native-header { text-align: center; width: 100%; max-width: 1000px; margin: 0 auto 60px auto; }
.pj-main-title { font-size: 3.5rem; font-weight: 800; margin-bottom: 15px; color: var(--accent-gold); line-height: 1.2; }
.pj-main-subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 40px; font-weight: 500; letter-spacing: 0.5px; }

.pj-native-price {
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--primary-navy) 100%);
    border: 2px solid var(--accent-gold); 
    border-radius: 12px;
    padding: 30px; margin-bottom: 30px; text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5); max-width: 600px; margin: 0 auto 30px auto;
}
.pj-native-big-price { font-size: 3.5rem; font-weight: 800; color: #fff; margin: 10px 0; line-height: 1; }
.pj-price-link { display: inline-block; margin-top: 15px; color: var(--accent-gold); text-decoration: none; font-size: 0.95rem; border-bottom: 1px dotted var(--accent-gold); }
.pj-price-link:hover { color: #fff; border-color: #fff; }

.pj-native-levels { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 15px; margin-top: 30px; text-align: left; }
.pj-native-lvl-box { background: rgba(255,255,255,0.05); padding: 20px; border-radius: 8px; border: 1px solid var(--card-hover); }
.pj-native-lvl-head { color: #3b82f6; font-weight: 700; font-size: 1.1rem; margin-bottom: 5px; }
.pj-native-lvl-desc { font-size: 0.9rem; line-height: 1.5; color: #e2e8f0; opacity: 0.9; }

.pj-native-delivery { margin-top: 15px; background: rgba(255,255,255,0.05); padding: 20px; border-radius: 8px; border: 1px solid var(--card-hover); text-align: center; color: #bfdbfe; line-height: 1.6; }

/* Interactive Course Grid Frame */
#course-selector { max-width: 1000px; margin: 0 auto; background: #0f172a; padding: 40px; border-radius: 16px; border: 1px solid var(--card-hover); box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
.pj-cat { font-size: 1.4rem; font-weight: 700; color: #fff; border-bottom: 1px solid var(--card-hover); padding-bottom: 10px; margin: 0 0 20px 0; }
.pj-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 15px; margin-bottom: 40px; }
.pj-item { background-color: var(--card-bg); border: 1px solid var(--card-hover); border-radius: 6px; padding: 12px 15px; cursor: pointer; display: flex; align-items: center; transition: background 0.1s; user-select: none; }
.pj-item:hover { background-color: var(--card-hover); }
.pj-box { width: 24px; height: 24px; min-width: 24px; border: 2px solid #94a3b8; border-radius: 4px; margin-right: 15px; display: flex; align-items: center; justify-content: center; transition: all 0.1s; }
.pj-text { font-size: 1rem; color: #fff; line-height: 1.3; }
.pj-badge { display: block; font-size: 0.75rem; margin-top: 4px; font-weight: 600; text-transform: uppercase; }

/* Selection States */
.pj-item.is-selected { background-color: rgba(16, 185, 129, 0.15); border-color: #10b981; }
.pj-item.is-selected .pj-box { background-color: #10b981; border-color: #10b981; }
.pj-item.is-selected .pj-box::after { content: "✓"; color: white; font-weight: bold; font-size: 14px; }

.pj-special-row { margin-top: 10px; }
.pj-ttt-row { border-color: var(--accent-gold); }
.pj-ttt-row.is-selected { background-color: rgba(230, 157, 0, 0.15); border-color: var(--accent-gold); }
.pj-ttt-row.is-selected .pj-box { background-color: var(--accent-gold); border-color: var(--accent-gold); }
.pj-remote-row { border-color: #3b82f6; }
.pj-remote-row.is-selected { background-color: rgba(59, 130, 246, 0.15); border-color: #3b82f6; }
.pj-remote-row.is-selected .pj-box { background-color: #3b82f6; border-color: #3b82f6; }
.pj-guide-row { border-color: var(--accent-gold) !important; background: rgba(230, 157, 0, 0.05); }

.pj-bar { margin-top: 10px; padding: 30px; background: var(--card-bg); border-radius: 12px; text-align: center; border: 1px solid var(--card-hover); }
.pj-btn { display: inline-block; background-color: #64748b; color: #fff; text-decoration: none; padding: 16px 40px; border-radius: 8px; font-size: 1.2rem; font-weight: 700; pointer-events: none; transition: all 0.2s; border: none; }
.pj-btn.is-active { background-color: var(--accent-gold); color: var(--primary-navy); pointer-events: auto; cursor: pointer; box-shadow: 0 4px 15px rgba(230, 157, 0, 0.4); }
.pj-btn.is-active:hover { transform: translateY(-2px); background-color: #f7b233; }

/* ==============================
   6. PRICING PAGE SPECIFICS
   ============================== */
.pricing-section { padding: 150px 0 80px 0; color: var(--text-white); }
.pricing-section h1 { color: var(--text-white); font-size: 3.5rem; font-weight: 800; text-align: center; margin-bottom: 10px; }
.pj-price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 60px; max-width: 900px; margin-left: auto; margin-right: auto; }
.pj-price-card { background-color: var(--card-bg); border: 1px solid var(--card-hover); border-radius: 12px; padding: 30px; text-align: center; }
.pj-price-card.featured { border-color: var(--accent-gold); background: linear-gradient(135deg, var(--card-bg) 0%, var(--primary-navy) 100%); }
.pj-card-title { font-size: 1.2rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; font-weight: 600; }
.pj-card-amount { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 5px; }
.pj-card-sub { font-size: 0.9rem; color: var(--text-muted); }

.pj-terms-box { background-color: #0f172a; border: 1px solid var(--card-hover); border-radius: 12px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.6); max-width: 900px; margin: 0 auto; }
.pj-terms-box h2 { color: #3b82f6; font-size: 1.5rem; margin-top: 30px; margin-bottom: 15px; border-bottom: 1px solid var(--card-hover); padding-bottom: 10px; }
.pj-terms-box h2:first-child { margin-top: 0; }
.pj-terms-box p, .pj-terms-box li { color: #e2e8f0; line-height: 1.7; margin-bottom: 15px; font-size: 1rem; }
.pj-terms-box ul { padding-left: 20px; margin-bottom: 20px; }

/* ==============================
   7. CONTACT PAGE SPECIFICS
   ============================== */
.contact-page-body { background-color: var(--light-bg); } /* Overrides the navy for the contact page */
.page-header { background-color: var(--primary-navy); color: var(--text-white); padding: 160px 0 60px 0; text-align: center; }
.page-header h1 { color: var(--accent-gold); font-size: 3rem; margin-bottom: 15px; }
.page-header p { font-size: 1.2rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; }

.contact-section { padding: 80px 0; }
/* FORCED 2-COLUMN GRID FOR CONTACT CARDS */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 50px; }
.contact-card { background-color: var(--primary-navy); border-radius: 12px; padding: 40px 30px; text-align: center; color: var(--text-white); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-top: 5px solid var(--accent-gold); transition: transform 0.3s ease; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.contact-card:hover { transform: translateY(-5px); }
.contact-card h3 { color: var(--text-white); font-size: 1.5rem; margin-bottom: 20px; }
.contact-card p { color: rgba(255,255,255,0.8); margin-bottom: 15px; }
.contact-link-large { display: inline-block; font-size: 1.4rem; font-weight: 700; color: var(--accent-gold); text-decoration: none; word-break: break-all; transition: color 0.2s; margin-top: auto; }
.contact-link-large:hover { color: #f7b233; }

.qr-wrapper { background-color: #ffffff; padding: 8px; border-radius: 8px; display: inline-block; margin-bottom: 0; margin-top: auto; }
.qr-code { max-width: 140px; height: auto; display: block; }
.office-box { background-color: var(--secondary-bg); border: 1px solid #e2e8f0; border-radius: 12px; padding: 40px; text-align: center; max-width: 600px; margin: 0 auto; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.office-box h2 { color: var(--primary-navy); }
.office-box p { color: #000000; font-weight: 500; }

/* ==============================
   8. PRIVACY PAGE SPECIFICS
   ============================== */
.legal-section { padding: 150px 0 80px 0; color: var(--text-white); }
.legal-box { background-color: var(--card-bg); border: 1px solid var(--card-hover); border-radius: 12px; padding: 50px; max-width: 800px; margin: 0 auto; box-shadow: 0 10px 40px rgba(0,0,0,0.6); }
.legal-box h1 { color: var(--text-white); font-size: 2.5rem; font-weight: 800; border-bottom: 1px solid var(--card-hover); padding-bottom: 20px; margin-bottom: 20px; }
.last-updated { color: var(--accent-gold); font-weight: 600; margin-bottom: 30px; }
.legal-box h2 { color: #3b82f6; font-size: 1.5rem; margin-top: 40px; margin-bottom: 15px; }
.legal-box p, .legal-box li { color: #e2e8f0; line-height: 1.8; margin-bottom: 15px; font-size: 1.05rem; }
.legal-box ul { padding-left: 20px; margin-bottom: 25px; }
.legal-box a { color: #3b82f6; text-decoration: none; font-weight: 600; }
.legal-box a:hover { color: #60a5fa; text-decoration: underline; }
.ico-badge { margin-top: 50px; padding: 20px; background-color: rgba(255, 255, 255, 0.05); border-left: 4px solid var(--accent-gold); border-radius: 4px; color: #94a3b8; font-size: 0.95rem; }

/* ==============================
   9. ACCREDITATIONS STRIP & FOOTER
   ============================== */
.accreditations { background-color: #FFFFFF; padding: 40px 0; text-align: center; border-bottom: 1px solid #eee; }
.accreditations-strip { display: block; margin: 0 auto; max-width: 90%; height: auto; max-height: 180px; }

footer { background-color: #06111a; color: rgba(255,255,255,0.7); padding: 30px 0; text-align: center; font-size: 0.9rem; border-top: 1px solid #1e293b; }
.footer-links { margin-top: 15px; display: flex; justify-content: center; gap: 20px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-gold); }

/* ==============================
   10. MOBILE RESPONSIVENESS
   ============================== */
@media (max-width: 768px) {
    .header-container { flex-direction: column; text-align: center; }
    nav ul { flex-direction: column; gap: 15px; padding-top: 15px; }
    .header-phone { margin-top: 15px; }
    
    .hero { padding: 220px 0 60px 0; } 
    .hero h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 15px; }
    .hero-buttons a { width: 100%; box-sizing: border-box; }
    
    .training-section, .pricing-section, .page-header, .legal-section { padding-top: 220px; }
    
    .pj-native-levels { grid-template-columns: 1fr; }
    .pj-native-big-price { font-size: 3rem; }
    .pj-grid { grid-template-columns: 1fr; }
    #course-selector { padding: 20px; }
    
    .pricing-section h1 { font-size: 2.5rem; }
    .pj-terms-box { padding: 25px; }
    
    /* ENSURES CONTACT GRID STACKS TO 1 COLUMN ON MOBILE */
    .contact-grid { grid-template-columns: 1fr; }
    .contact-link-large { font-size: 1.2rem; }
    
    .legal-box { padding: 30px 20px; }
    .legal-box h1 { font-size: 2rem; }
}
/* ==========================================
   HOMEPAGE BOTTOM CONTACT SECTION TEXT FIX
   ========================================== */
.contact-section,
.contact-section h2,
.contact-section h3,
.contact-section p,
.contact-section span,
.contact-section strong,
.contact-section a,
section[class*="contact"],
section[class*="contact"] * {
    color: #ffffff !important;
}

/* Ensure the gold button stays dark text on gold background */
.contact-section .btn,
section[class*="contact"] .btn,
section[class*="contact"] a.btn {
    color: var(--primary-navy, #001f3f) !important;
}
/* ==========================================
   NEW HERO CTAs & CARDS STYLING
   ========================================== */
.hero-actions {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.btn-large {
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 32px;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.hero-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 850px;
}

.hero-cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hero-cta-card h3 {
    color: var(--accent-gold, #d4af37);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.hero-cta-card p {
    font-size: 0.95rem;
    color: #e0e0e0;
    margin-bottom: 15px;
    line-height: 1.4;
}

.hero-cta-card .btn-outline {
    font-size: 0.9rem;
    padding: 8px 16px;
    width: 100%;
}
/* ==========================================
   RESPONSIVE HAMBURGER MENU STYLES
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--primary-navy, #001220);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--accent-gold, #d4af37);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Transform 3 lines to an X when open */
.mobile-menu-toggle.open .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.mobile-menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #00182b;
        border-top: 1px solid rgba(212, 175, 55, 0.3);
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0,0,0,0.4);
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .header-phone {
        display: none; /* Keeps mobile header minimal */
    }
}
/* ==========================================
   MOBILE HEADER SCROLL FIX (NON-FIXED)
   ========================================== */
@media (max-width: 768px) {
    .site-header {
        position: relative !important; /* Header scrolls away with the page */
        top: auto !important;
    }
}
/* ==========================================
   COOKIE CONSENT BANNER STYLES
   ========================================== */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #001220;
    border-top: 2px solid #d4af37;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    padding: 18px 20px;
    box-sizing: border-box;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    text-align: center;
}

.cookie-content p {
    color: #e0e0e0;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-content p a {
    color: #d4af37;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background-color: #d4af37;
    color: #001220;
    border: none;
}

.cookie-btn.accept:hover {
    background-color: #f1c40f;
}

.cookie-btn.decline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-btn.decline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        text-align: left;
    }
}
/* Desktop Dropdown Styling */
.pj-dropdown {
  position: relative;
}

.pj-arrow {
  font-size: 0.75rem;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.pj-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #00182b;
  border: 1px solid var(--accent-gold, #d4af37);
  border-radius: 6px;
  padding: 10px 0;
  min-width: 280px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  list-style: none;
}

.pj-dropdown-menu li {
  margin: 0;
}

.pj-dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pj-dropdown-menu a:hover {
  background-color: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold, #d4af37);
}

/* Hover trigger for Desktop */
@media (min-width: 769px) {
  .pj-dropdown:hover .pj-dropdown-menu {
    display: block;
  }
  
  .pj-dropdown:hover .pj-arrow {
    transform: rotate(180deg);
  }
}
/* ==========================================
   MOBILE DROPDOWN MENU FIX (CLICK TO EXPAND)
   ========================================== */
@media (max-width: 768px) {
    /* Show the menu when components.js adds the is-open class */
    .pj-dropdown.is-open .pj-dropdown-menu {
        display: block;
        position: relative; /* Pushes the 'Contact' link down naturally instead of floating over it */
        box-shadow: none;
        border: none;
        background-color: rgba(255, 255, 255, 0.05); /* Slight highlight for the sub-menu area */
        margin-top: 10px;
        padding: 5px 0;
    }

    /* Flip the arrow to point up when open */
    .pj-dropdown.is-open .pj-arrow {
        transform: rotate(180deg);
        display: inline-block;
    }
}