/* ============================================
   🎨 DEAFJOBS - PREMIUM UI STYLESHEET
   Built for Beauty & Performance
============================================ */

:root {
    /* Core Colors */
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #818cf8;
    --accent: #06b6d4;
    --navy: #0f172a;
    --slate: #334155;
    --gray: #64748b;
    --light-gray: #cbd5e1;
    --bg: #f8fafc;
    --white: #ffffff;

    /* Glass Effects */
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-dark: rgba(15, 23, 42, 0.05);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 16px 48px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.16);

    /* Premium Bezier Curves */
    --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition: all 0.6s var(--ease-smooth);
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ============ ANIMATED BACKGROUND ============ */
.premium-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 50%, #fdf4ff 100%);
    position: relative;
    min-height: 100vh;
}

.premium-bg::before,
.premium-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.premium-bg::before {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
    top: -150px;
    right: -100px;
    animation: float 20s ease-in-out infinite;
}

.premium-bg::after {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
    bottom: -100px;
    left: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, 30px) scale(1.1);
    }
}

/* Content above background */
section,
header {
    position: relative;
    z-index: 1;
}

/* ============ HEADER & NAVIGATION ============ */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    padding: 20px 0;
    transition: var(--transition);
}

#main-header.scrolled {
    padding: 12px 0;
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    z-index: 1201;
    transition: transform 0.4s var(--ease-smooth);
}

.logo:hover {
    transform: scale(1.03);
}

.logo img {
    height: 44px;
    filter: drop-shadow(0 4px 8px rgba(79, 70, 229, 0.2));
}

.logo span {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width 0.4s var(--ease-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ============ COMMUNITY DOCK ============ */
.community-dock {
    padding-top: 140px;
    padding-bottom: 60px;
}

.dock-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border: 1px solid var(--glass-border);
    padding: 28px 32px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--navy);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(79, 70, 229, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(79, 70, 229, 0.4);
}

.icon-sphere {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    transition: transform 0.5s var(--ease-bounce);
}

.glass-card:hover .icon-sphere {
    transform: rotate(-12deg) scale(1.1);
}

.icon-sphere svg {
    width: 28px;
    height: 28px;
}

.whatsapp-hover svg {
    color: #25D366;
}

.telegram-hover svg {
    color: #0088cc;
}

.dock-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.dock-text span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ============ MAIN GRID (70:30) ============ */
.fluid-grid {
    display: grid;
    grid-template-columns: 7fr 3.5fr;
    gap: 48px;
    padding-bottom: 100px;
    align-items: start;
}

/* ============ FEED AREA ============ */
.area-title {
    margin-bottom: 40px;
}

.area-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 12px;
    letter-spacing: -0.5px;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

/* ============ PREMIUM JOB CARD ============ */
.premium-card {
    background: white;
    padding: 36px;
    border-radius: 24px;
    margin-bottom: 28px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s var(--ease-smooth);
}

.premium-card:hover {
    transform: translateX(12px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.15);
}

.premium-card:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.premium-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 16px 0 12px;
    color: var(--navy);
}

.premium-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.premium-card a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.premium-card a:hover {
    gap: 10px;
}

/* ============ SIDEBAR GLASS WIDGETS ============ */
.glass-widget {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(150%);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    margin-bottom: 28px;
    box-shadow: var(--shadow-md);
}

.glass-widget h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.premium-search {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.premium-search:focus-within {
    border-color: var(--primary);
}

.premium-search input {
    width: 100%;
    border: none;
    padding: 14px 18px;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
}

.search-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 16px;
    transition: box-shadow 0.4s;
}

.premium-search:focus-within .search-glow {
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

/* Premium Nav Links */
.premium-nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    text-decoration: none;
    color: var(--slate);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: all 0.3s;
}

.premium-nav a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.premium-nav .count {
    background: var(--bg);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Promo Card */
.promo-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.promo-card h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.promo-card p {
    opacity: 0.95;
    margin-bottom: 20px;
}

.btn-minimal {
    background: white;
    color: var(--primary);
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-minimal:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.sticky-side {
    position: sticky;
    top: 100px;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

/* ============ MOBILE RESPONSIVE ============ */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 1050;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    z-index: 1201;
}

.bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px;
    background: var(--navy);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 992px) {

    .fluid-grid,
    .dock-wrapper {
        grid-template-columns: 1fr;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 40px;
        z-index: 1200;
        transition: right 0.5s var(--ease-smooth);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        background: var(--primary);
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        background: var(--primary);
    }

    .community-dock {
        padding-top: 120px;
    }

    .sticky-side {
        position: static;
    }
}

@media (max-width: 576px) {
    .premium-card {
        padding: 24px;
        border-radius: 20px;
    }

    .glass-card {
        padding: 20px;
    }

    .glass-widget {
        padding: 24px;
    }
}

/* ============================================
   🎨 COMPACT HORIZONTAL JOB CARDS
============================================ */

.stagger-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

/* ============ PREMIUM CARD (Horizontal Layout) ============ */
.premium-card {
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    transform: scaleY(0);
    transition: transform 0.4s var(--ease-smooth);
}

.premium-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.2);
}

.premium-card:hover::before {
    transform: scaleY(1);
}

/* ============ SQUARE THUMBNAIL (Small Image) ============ */
.job-thumbnail {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.job-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.premium-card:hover .job-thumbnail img {
    transform: scale(1.15);
}

/* ============ CARD CONTENT (Text Area) ============ */
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ============ META (Badge + Date) ============ */
.card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-government {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}

.badge-remote {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.badge-mts {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.job-date {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ============ TITLE ============ */
.premium-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--navy);
    letter-spacing: -0.3px;
    margin: 0;
    transition: color 0.3s;
}

.premium-card:hover h3 {
    color: var(--primary);
}

/* ============ EXCERPT ============ */
.job-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============ CARD ACTIONS (Author + Link) ============ */
.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.author-text {
    font-size: 0.85rem;
    color: var(--slate);
}

/* ============ LINK ARROW ============ */
.link-arrow {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s var(--ease-smooth);
}

.link-arrow:hover {
    gap: 10px;
}

/* ============ CARDS WITHOUT IMAGE ============ */
.premium-card:not(:has(.job-thumbnail)) {
    padding: 28px 32px;
}

.premium-card:not(:has(.job-thumbnail)) h3 {
    font-size: 1.4rem;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 768px) {
    .premium-card {
        flex-direction: column;
        padding: 20px;
    }

    .job-thumbnail {
        width: 100%;
        height: 180px;
    }

    .premium-card h3 {
        font-size: 1.2rem;
    }

    .card-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .link-arrow {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .job-thumbnail {
        height: 160px;
    }

    .premium-card h3 {
        font-size: 1.1rem;
    }

    .job-excerpt {
        font-size: 0.9rem;
    }
}

/* ============================================
   🎨 SIDEBAR - ULTIMATE BEAUTY
============================================ */

.sidebar-area {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ============ GLASS WIDGET ============ */
.glass-widget {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.glass-widget h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============ SEARCH WIDGET ============ */
.premium-search {
    position: relative;
    background: white;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
    display: flex;
    transition: border-color 0.3s;
}

.premium-search:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.premium-search input {
    flex: 1;
    border: none;
    padding: 14px 16px;
    outline: none;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--navy);
}

.premium-search input::placeholder {
    color: var(--text-gray);
}

.search-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 0 18px;
    cursor: pointer;
    color: white;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* ============ LATEST POSTS ============ */
.latest-posts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.latest-posts li {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.latest-posts li:last-child {
    border-bottom: none;
}

.latest-posts a {
    display: flex;
    align-items: center;
    padding: 14px 0;
    text-decoration: none;
    color: var(--slate);
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.3s;
    position: relative;
}

.latest-posts a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--primary);
    font-weight: bold;
    transition: all 0.3s;
}

.latest-posts a:hover {
    color: var(--primary);
    padding-left: 12px;
}

.latest-posts a:hover::before {
    left: 0;
    opacity: 1;
}

.post-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============ CATEGORY LIST ============ */
.category-list {
    list-style: none;
    display: grid;
    gap: 4px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 8px;
}

/* Custom Scrollbar */
.category-list::-webkit-scrollbar {
    width: 6px;
}

.category-list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.category-list::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--slate);
    font-size: 0.9rem;
    border-radius: 12px;
    transition: all 0.3s;
    font-weight: 500;
}

.category-list a:hover {
    background: rgba(79, 70, 229, 0.08);
    color: var(--primary);
    padding-left: 20px;
}

/* Featured Category */
.category-list a.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 700;
}

.category-list a.featured:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding-left: 16px;
    transform: scale(1.02);
}

/* ============ STICKY SIDEBAR ============ */
.sticky-side {
    position: sticky;
    top: 100px;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 992px) {
    .sidebar-area {
        margin-top: 50px;
    }

    .sticky-side {
        position: static;
    }

    .category-list {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .glass-widget {
        padding: 20px;
    }

    .glass-widget h3 {
        font-size: 1.05rem;
    }

    .category-list {
        max-height: 300px;
    }
}

/* ============================================
   🎨 PREMIUM FOOTER
============================================ */

.premium-footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #cbd5e1;
    padding: 80px 0 0;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

/* Decorative Top Wave */
.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

/* Footer Columns */
.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

/* Brand Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
    color: #94a3b8;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    color: #cbd5e1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 8px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer Bottom */
.footer-bottom {
    padding: 32px 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 8px 0;
}

.footer-bottom strong {
    color: white;
    font-weight: 700;
}

.footer-credit {
    background: linear-gradient(90deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .premium-footer {
        padding: 60px 0 0;
        margin-top: 60px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-col h4 {
        font-size: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        padding: 24px 0;
    }
}

/* ============================================
   🎨 ABOUT PAGE STYLING
============================================ */

.about-page {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

/* ============ ABOUT HERO ============ */
.about-hero {
    padding: 180px 0 100px;
    position: relative;
}

.about-hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.15));
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.25rem;
    color: var(--slate);
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero-mission {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.hero-mission strong {
    color: var(--primary);
    font-weight: 700;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-card p {
    color: var(--slate);
    font-weight: 600;
}

/* ============ CONTENT SECTIONS ============ */
.content-section {
    padding: 80px 0;
}

.content-box {
    background: white;
    padding: 60px;
    border-radius: 32px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.content-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.content-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--slate);
    margin-bottom: 20px;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

/* Mission Box */
.mission-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.mission-box h2 {
    color: white;
}

.mission-box p {
    color: rgba(255, 255, 255, 0.95);
}

.mission-quote {
    font-size: 1.3rem !important;
    font-weight: 600;
    margin-top: 24px;
}

.mission-quote mark {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
}

/* Two Column Section */
.two-col-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.col-box {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.box-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.col-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.col-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--slate);
}

/* Closing Section */
.closing-section {
    background: white;
    padding: 60px;
    border-radius: 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.closing-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
}

.closing-section p {
    font-size: 1.2rem;
    color: var(--slate);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tagline {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.1));
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.tagline h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 992px) {
    .about-hero .container {
        grid-template-columns: 1fr;
    }

    .two-col-section {
        grid-template-columns: 1fr;
    }

    .content-box {
        padding: 40px;
    }

    .closing-section {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 140px 0 60px;
    }

    .content-box,
    .closing-section {
        padding: 30px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* ============================================
   🎨 CONTACT PAGE STYLING
============================================ */

.contact-page {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
    min-height: 100vh;
}

/* ============ CONTACT HERO ============ */
.contact-hero {
    padding: 180px 0 80px;
    text-align: center;
}

.contact-hero .hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--slate);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* ============ CONTACT GRID ============ */
.contact-content {
    padding: 0 0 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

/* ============ FORM SECTION ============ */
.form-section {
    background: white;
    padding: 50px;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.form-section h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.btn-submit {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 12px;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Messages */
.form-message {
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
}

.success-message {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #10b981;
}

.error-message {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #ef4444;
}

/* ============ INFO SECTION ============ */
.info-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-box {
    background: white;
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.info-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.info-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--slate);
    margin-bottom: 12px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-detail strong {
    color: var(--navy);
    font-size: 0.95rem;
}

.contact-detail a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.contact-detail a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Tagline Box */
.tagline-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.tagline-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 35px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 140px 0 60px;
    }

    .form-section {
        padding: 28px;
    }

    .info-box {
        padding: 24px;
    }
}

/* ============================================
   🎨 CAREER GUIDANCE PAGE STYLING
============================================ */

.career-page {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

/* ============ CAREER HERO ============ */
.career-hero {
    padding: 180px 0 100px;
    text-align: center;
}

.career-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.career-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.career-hero .hero-lead {
    font-size: 1.2rem;
    color: var(--slate);
    line-height: 1.7;
}

/* ============ SECTION TITLE ============ */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-title p {
    font-size: 1.15rem;
    color: var(--slate);
}

/* ============ CAREER GRID ============ */
.career-section {
    padding: 80px 0;
}

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.career-card {
    background: white;
    padding: 32px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(79, 70, 229, 0.1);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.career-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
}

.career-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

/* ============ SKILLS SECTION ============ */
.skills-section {
    padding: 80px 0;
}

.content-box {
    background: white;
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
}

.content-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--slate);
    margin-bottom: 40px;
}

.skills-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border-radius: 16px;
    border: 1px solid rgba(79, 70, 229, 0.1);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}

.skill-item:hover {
    transform: translateX(8px);
    border-color: var(--primary);
}

.skill-icon {
    font-size: 2rem;
}

/* ============ RESUME & INTERVIEW SECTION ============ */
.resume-section {
    padding: 80px 0;
}

.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.tips-box {
    margin-top: 32px;
    padding: 28px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(99, 102, 241, 0.05));
    border-radius: 20px;
    border-left: 4px solid var(--primary);
}

.tips-box h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.tips-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tips-list li {
    padding-left: 32px;
    position: relative;
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.6;
}

.tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3rem;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.check-item {
    padding: 16px 20px;
    background: #ecfdf5;
    border-radius: 12px;
    color: #059669;
    font-weight: 600;
    border-left: 4px solid #10b981;
}

/* ============ JOB CHECKLIST SECTION ============ */
.checklist-section {
    padding: 80px 0;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 60px;
    border-radius: 32px;
    color: white;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.highlight-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.highlight-box .section-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.job-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.checklist-item {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============ RESOURCES SECTION ============ */
.resources-section {
    padding: 80px 0 100px;
}

.closing-box {
    background: white;
    padding: 60px;
    border-radius: 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.closing-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
}

.closing-box p {
    font-size: 1.2rem;
    color: var(--slate);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.tagline {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.1));
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.tagline h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 992px) {
    .two-column-layout {
        grid-template-columns: 1fr;
    }

    .content-box {
        padding: 40px;
    }

    .career-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 576px) {
    .career-hero {
        padding: 140px 0 60px;
    }

    .content-box,
    .highlight-box,
    .closing-box {
        padding: 30px;
    }

    .job-checklist {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* ============================================
   🎨 RESUME TIPS PAGE STYLING
============================================ */

.resume-page {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

/* ============ RESUME HERO ============ */
.resume-hero {
    padding: 180px 0 100px;
    text-align: center;
}

.resume-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.resume-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.resume-hero .hero-lead {
    font-size: 1.2rem;
    color: var(--slate);
    line-height: 1.8;
}

/* ============ TIP BOXES (Numbered) ============ */
.resume-content {
    padding: 0 0 80px;
}

.tip-box {
    background: white;
    border-radius: 32px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
    transition: var(--transition);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.tip-box:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* Tip Number Circle */
.tip-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

/* Tip Content */
.tip-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.tip-content p {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Tip Lists */
.tip-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tip-list li {
    padding-left: 32px;
    position: relative;
    font-size: 1.05rem;
    color: var(--slate);
}

.tip-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
}

.tip-note {
    font-style: italic;
    color: var(--text-gray);
    margin-top: 16px;
}

/* Example Box */
.example-box {
    margin-top: 24px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(99, 102, 241, 0.05));
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.example-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.example-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--slate);
    line-height: 1.7;
    margin: 0;
}

/* Skills Showcase */
.skills-showcase {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.skill-tag {
    padding: 10px 20px;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    border-radius: 100px;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(79, 70, 229, 0.2);
    font-size: 0.95rem;
}

/* Work Example */
.work-example {
    margin-top: 24px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.company-info {
    font-size: 1.05rem;
    color: var(--slate);
    margin-bottom: 4px;
}

.dates {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 16px;
}

.job-desc {
    font-size: 1rem;
    color: var(--slate);
    margin: 0;
}

/* Highlight Text */
.highlight-text {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.1));
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--navy);
    border-left: 4px solid var(--primary);
}

/* Checklist */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.check-item {
    padding: 14px 18px;
    background: #ecfdf5;
    border-radius: 10px;
    color: #059669;
    font-weight: 600;
    border-left: 4px solid #10b981;
}

/* ============ CTA SECTION ============ */
.resume-cta {
    padding: 80px 0 100px;
}

.cta-box {
    background: white;
    padding: 60px;
    border-radius: 32px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--slate);
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.tagline {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.tagline p {
    font-size: 1.1rem;
    color: var(--slate);
    margin: 0;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 768px) {
    .tip-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px;
    }

    .tip-number {
        margin: 0 auto 24px;
    }

    .tip-content h2 {
        font-size: 1.5rem;
    }

    .tip-list li {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .resume-hero {
        padding: 140px 0 60px;
    }

    .cta-box {
        padding: 40px 28px;
    }

    .btn-cta {
        width: 100%;
    }
}

/* ============================================
   🎨 INTERVIEW PREPARATION PAGE STYLING
============================================ */

.interview-page {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

/* ============ INTERVIEW HERO ============ */
.interview-hero {
    padding: 180px 0 100px;
    text-align: center;
}

.interview-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.interview-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

/* ============ SECTION HEADER ============ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
}

/* ============ PREP SECTION ============ */
.prep-section {
    padding: 80px 0;
}

.prep-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.prep-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: var(--transition);
}

.prep-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.prep-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.prep-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.prep-card p {
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.7;
}

/* ============ QUESTIONS SECTION ============ */
.questions-section {
    padding: 80px 0;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.question-box {
    background: white;
    border-radius: 24px;
    padding: 32px;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    align-items: start;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(79, 70, 229, 0.1);
    transition: var(--transition);
}

.question-box:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.question-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
}

.question-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.question-content p {
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.7;
}

/* ============ COMMUNICATION SECTION ============ */
.communication-section {
    padding: 80px 0;
}

.comm-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 60px;
    border-radius: 32px;
    color: white;
    box-shadow: var(--shadow-xl);
}

.comm-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.95);
}

.highlight-text {
    font-size: 1.15rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.comm-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.comm-item {
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============ DURING SECTION ============ */
.during-section {
    padding: 80px 0;
}

.checklist-box {
    background: white;
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.checklist-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 40px;
    text-align: center;
}

.checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.check-item {
    padding: 16px 20px;
    background: #ecfdf5;
    border-radius: 12px;
    color: #059669;
    font-weight: 600;
    border-left: 4px solid #10b981;
}

/* ============ AFTER SECTION ============ */
.after-section {
    padding: 80px 0;
}

.after-box {
    background: white;
    padding: 50px;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.after-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
}

.after-box p {
    font-size: 1.15rem;
    color: var(--slate);
    margin-bottom: 20px;
}

.after-box .highlight-text {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(99, 102, 241, 0.1));
    padding: 20px;
    border-radius: 14px;
    font-weight: 600;
    color: var(--navy);
    display: inline-block;
}

/* ============ PRACTICE SECTION ============ */
.practice-section {
    padding: 80px 0;
}

.practice-box {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    padding: 60px;
    border-radius: 32px;
    text-align: center;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.practice-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.practice-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
}

.practice-box p {
    font-size: 1.15rem;
    color: var(--slate);
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.8;
}

.motivational-text {
    background: var(--primary);
    color: white;
    padding: 20px 40px;
    border-radius: 14px;
    display: inline-block;
    font-size: 1.2rem;
}

/* ============ CTA SECTION ============ */
.interview-cta {
    padding: 80px 0 100px;
}

.cta-box {
    background: white;
    padding: 60px;
    border-radius: 32px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--slate);
    margin-bottom: 32px;
}

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.4);
}

.tagline {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.tagline p {
    font-size: 1.1rem;
    color: var(--slate);
    margin: 0;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 768px) {
    .question-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .question-number {
        margin: 0 auto 20px;
    }

    .checklist {
        grid-template-columns: 1fr;
    }

    .comm-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .interview-hero {
        padding: 140px 0 60px;
    }

    .comm-box,
    .checklist-box,
    .practice-box,
    .cta-box {
        padding: 40px 28px;
    }

    .btn-cta {
        width: 100%;
    }
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}