/* ── ASMI Career — Shared Styles ─────────────────────────────── */

/* Navbar */
.asmi-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #7b41b3;
    box-shadow: 0 2px 12px rgba(123,65,179,0.18);
}
.asmi-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.asmi-nav-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}
.asmi-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.asmi-nav-links a {
    display: block;
    padding: 0.5rem 0.85rem;
    color: rgba(255,255,255,0.88);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.asmi-nav-links a:hover,
.asmi-nav-links a.active {
    background: rgba(255,255,255,0.14);
    color: #fff;
}
.asmi-nav-links .nav-cta a {
    background: #ffd700;
    color: #705d00;
    font-weight: 700;
    padding: 0.5rem 1.1rem;
}
.asmi-nav-links .nav-cta a:hover {
    background: #ffe033;
    color: #705d00;
}

/* Tools dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a {
    display: flex !important;
    align-items: center;
    gap: 4px;
}
.nav-dropdown > a::after {
    content: '▾';
    font-size: 0.75rem;
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    min-width: 210px;
    padding: 0.5rem;
    list-style: none;
    margin: 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: block;
}
.nav-dropdown-menu li a {
    color: #4d4732 !important;
    font-size: 0.875rem !important;
    padding: 0.55rem 0.85rem !important;
    border-radius: 7px;
    display: flex !important;
    align-items: center;
    gap: 10px;
}
.nav-dropdown-menu li a:hover {
    background: #f8f3ff !important;
    color: #7b41b3 !important;
}

/* Hamburger */
.asmi-nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
}
.asmi-nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile menu */
.asmi-mobile-menu {
    display: none;
    background: #6532a0;
    padding: 0.75rem 1.25rem 1rem;
}
.asmi-mobile-menu.open { display: block; }
.asmi-mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.65rem 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.asmi-mobile-menu a:last-child { border-bottom: none; }
.asmi-mobile-menu a:hover { color: #ffd700; }
.asmi-mobile-menu .mobile-section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    padding: 0.75rem 0.5rem 0.25rem;
}
.asmi-mobile-menu .mobile-cta {
    margin-top: 0.75rem;
    display: block;
    text-align: center;
    background: #ffd700;
    color: #705d00 !important;
    font-weight: 700 !important;
    border-radius: 10px;
    padding: 0.75rem !important;
    border-bottom: none !important;
}

/* Footer */
.asmi-footer {
    background: #1a0d2e;
    color: rgba(255,255,255,0.75);
    padding: 3rem 1.25rem 1.5rem;
}
.asmi-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.asmi-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.asmi-footer-brand img {
    height: 52px;
    width: auto;
    margin-bottom: 0.85rem;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.asmi-footer-brand p {
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 280px;
    color: rgba(255,255,255,0.55);
}
.asmi-footer h4 {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.asmi-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.asmi-footer ul a {
    color: rgba(255,255,255,0.60);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.15s;
}
.asmi-footer ul a:hover { color: #ffd700; }
.asmi-footer-contact-item {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.65rem;
    line-height: 1.5;
}
.asmi-footer-contact-item strong {
    display: block;
    color: rgba(255,255,255,0.80);
    font-size: 0.8rem;
}
.asmi-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    flex-wrap: wrap;
    gap: 0.5rem;
}
.asmi-footer-bottom a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
}
.asmi-footer-bottom a:hover { color: #ffd700; }

/* Tool shell pages */
.tool-shell-hero {
    background: linear-gradient(135deg, #7b41b3 0%, #5a2d8a 100%);
    color: white;
    padding: 4rem 1.25rem 3rem;
    text-align: center;
}
.tool-shell-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 100px;
    padding: 0.3rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    color: #ffd700;
}
.tool-shell-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.tool-shell-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.80);
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}
.tool-coming-soon {
    max-width: 600px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(123,65,179,0.10);
    border: 2px dashed #d0c6ab;
}
.tool-coming-soon .icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.tool-coming-soon h2 {
    color: #7b41b3;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.tool-coming-soon p {
    color: #4d4732;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 380px;
    margin: 0 auto 1.5rem;
}
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffd700;
    color: #705d00;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s, transform 0.15s;
}
.btn-gold:hover { background: #ffe033; transform: translateY(-1px); }
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #7b41b3;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.8rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid #7b41b3;
    cursor: pointer;
    transition: background 0.15s;
}
.btn-outline:hover { background: #f8f3ff; }

/* Responsive */
@media (max-width: 900px) {
    .asmi-nav-links { display: none; }
    .asmi-nav-hamburger { display: flex; }
    .asmi-footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem; }
}
@media (max-width: 600px) {
    .asmi-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .asmi-footer-bottom { flex-direction: column; text-align: center; }
}
