/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    min-height: 100vh;
    transition: all 0.3s ease;
}

/* Light Theme */
body.light {
    color: #1e293b;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6, #ec4899);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.text-cyan { color: #06b6d4; }
.text-purple { color: #8b5cf6; }
.text-pink { color: #ec4899; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(6, 182, 212, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
}

.logo-text {
    font-weight: bold;
    font-size: 1.25rem;
    color: white;
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    position: relative;
    padding: 0.5rem 0.75rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #06b6d4;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    border-radius: 1px;
}

.theme-toggle {
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
}

.mobile-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .mobile-controls {
        display: none;
    }
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: #cbd5e1;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn:hover {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
}

.mobile-menu-btn:focus {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

/* FIXED: Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(6, 182, 212, 0.3);
    padding: 1rem 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
    border-left-color: #06b6d4;
}

.mobile-nav-link:focus {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-text {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-name {
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 36rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

@media (min-width: 1024px) {
    .hero-description {
        margin: 0 0 2rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
    border: 2px solid #06b6d4;
    color: #06b6d4;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Profile Image */
.hero-image {
    display: flex;
    justify-content: center;
}

.profile-container {
    position: relative;
    width: 320px;
    height: 320px;
}

.profile-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.profile-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    border: 1px solid rgba(6, 182, 212, 0.3);
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-4px);
}

.stat-icon {
    padding: 0.75rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 0.5rem;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    color: #94a3b8;
}

/* About Preview */
.about-preview {
    padding: 5rem 0;
}

.section-content {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    max-width: 4xl;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .preview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.preview-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.preview-card:hover {
    border-color: rgba(6, 182, 212, 0.4);
    transform: translateY(-2px);
}

.preview-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.preview-card p {
    color: #94a3b8;
}

/* Page Sections */
.page-section {
    padding: 6rem 0 4rem;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 4rem;
    }
}

.page-description {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 48rem;
    margin: 0 auto;
}

/* About Page Styles */
.about-content {
    max-width: 7xl;
    margin: 0 auto;
}

.about-profile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 1024px) {
    .about-profile {
        grid-template-columns: 1fr 1fr;
    }
}

.profile-image-section {
    display: flex;
    justify-content: center;
}

.profile-name {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.profile-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #06b6d4;
    margin-bottom: 1.5rem;
}

.profile-description {
    space-y: 1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.profile-description p {
    margin-bottom: 1rem;
}

.website-features h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    space-y: 0.5rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.feature-check {
    color: #06b6d4;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.highlight-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
}

.highlight-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.highlight-card p {
    color: #94a3b8;
    font-size: 0.875rem;
}

.cta-section {
    text-align: center;
}

.cta-text {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.cta-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 1rem;
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.cta-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

/* Projects Page Styles */
.projects-container {
    space-y: 2rem;
}

.project-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.project-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem;
    gap: 1rem;
}

@media (max-width: 768px) {
    .project-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }
}

.project-info {
    flex: 1;
}

.project-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    font-size: 0.875rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.project-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
}

.project-summary {
    color: #cbd5e1;
    line-height: 1.7;
}

.project-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    align-self: flex-start;
}

@media (max-width: 768px) {
    .project-toggle {
        align-self: center;
    }
}

.project-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.project-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
}

.project-technologies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 2rem 1.5rem;
}

.tech-tag {
    padding: 0.25rem 0.75rem;
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    font-size: 0.875rem;
    border-radius: 0.375rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.project-details {
    display: none;
    padding: 0 2rem 2rem;
    border-top: 1px solid rgba(6, 182, 212, 0.3);
    margin-top: 1rem;
    padding-top: 1.5rem;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.project-details.visible {
    display: block;
    opacity: 1;
    max-height: 2000px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.detail-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.detail-section ul {
    list-style: none;
    space-y: 0.5rem;
}

.detail-section li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.detail-section li::before {
    content: '•';
    color: #06b6d4;
    font-weight: bold;
    margin-top: 0.125rem;
}

/* Timeline Styles */
.timeline-container {
    position: relative;
    max-width: 4xl;
    margin: 0 auto;
    padding: 1.5rem 0;
}

.timeline-line {
    position: absolute;
    left: 1rem;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #06b6d4, #8b5cf6);
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    .timeline-line {
        left: 50%;
    }
}

.timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 2.5rem;
}

.timeline-dot {
    position: absolute;
    left: 1rem;
    width: 1rem;
    height: 1rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 50%;
    border: 4px solid #0f172a;
    transform: translateX(-50%);
    z-index: 10;
}

@media (min-width: 768px) {
    .timeline-dot {
        left: 50%;
    }
}

.timeline-content {
    margin-left: 3rem;
    width: calc(100% - 3rem);
}

@media (min-width: 768px) {
    .timeline-content {
        width: calc(50% - 2rem);
        margin-left: 0;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: calc(50% + 2rem);
    }
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(248, 250, 252, 0.05);
    border-radius: 0.5rem 0.5rem 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-header:hover {
    background: rgba(6, 182, 212, 0.05);
}

.timeline-info {
    flex: 1;
}

.timeline-period {
    font-weight: 600;
    color: #06b6d4;
    margin-bottom: 0.5rem;
}

.timeline-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
    font-size: 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.timeline-company {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .timeline-company {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}

.timeline-location {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
}

.timeline-description {
    color: #94a3b8;
    font-size: 0.875rem;
}

.timeline-toggle {
    background: none;
    border: 2px solid #06b6d4;
    color: #06b6d4;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-toggle:hover {
    background: #06b6d4;
    color: white;
}

.timeline-details {
    display: none;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
}

.timeline-details.visible {
    display: block;
}

.timeline-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.timeline-details ul {
    list-style: none;
    space-y: 0.5rem;
}

.timeline-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.timeline-details li::before {
    content: '•';
    color: #06b6d4;
    font-weight: bold;
    margin-top: 0.125rem;
}

/* Filter Styles */
.filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #06b6d4;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-4px);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    font-size: 0.875rem;
    border-radius: 9999px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0.75rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: #06b6d4;
}

.blog-excerpt {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #06b6d4;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: white;
}

.blog-link:hover i {
    transform: translateX(4px);
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-4px);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    color: white;
    font-size: 0.875rem;
}

.coming-soon-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
}

.video-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    color: white;
    font-size: 0.875rem;
}

.video-content {
    padding: 1.5rem;
}

.video-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.video-card:hover .video-title {
    color: #06b6d4;
}

.video-description {
    color: #cbd5e1;
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: #94a3b8;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Coming Soon Styles */
.coming-soon-notice {
    text-align: center;
    margin-bottom: 3rem;
}

.notice-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(249, 115, 22, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    max-width: 32rem;
    margin: 0 auto;
}

.notice-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.notice-card p {
    color: #cbd5e1;
}

.coming-soon-section {
    text-align: center;
    margin-top: 4rem;
}

.coming-soon-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    max-width: 32rem;
    margin: 0 auto;
}

.coming-soon-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.coming-soon-card p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

/* Contact Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-intro h2 {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-intro p {
    color: #cbd5e1;
    line-height: 1.7;
}

.contact-details {
    space-y: 1.5rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-text p,
.contact-text a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #06b6d4;
}

.contact-social h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.75rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.5rem;
    color: #06b6d4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
}

.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-link.github:hover {
    background: #333;
    border-color: #333;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.resume-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2rem;
}

.resume-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.resume-section p {
    color: #cbd5e1;
    font-size: 0.875rem;
}

/* Contact Form */
.contact-form-container h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-form {
    space-y: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid #475569;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #06b6d4;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #cbd5e1;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    margin: 0;
    accent-color: #06b6d4;
}

.checkmark {
    width: 1rem;
    height: 1rem;
    border: 1px solid #475569;
    border-radius: 0.25rem;
    position: relative;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.submit-btn {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-text {
    transition: opacity 0.3s ease;
}

.loading-spinner {
    display: none;
    width: 1rem;
    height: 1rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .loading-spinner {
    display: block;
}

.error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.visible {
    display: block;
}

.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 1rem;
}

.success-message.visible {
    display: block;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #22c55e, #10b981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #22c55e;
    margin-bottom: 1rem;
}

.success-message p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(6, 182, 212, 0.3);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr;
    }
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 28rem;
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    space-y: 0.5rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #06b6d4;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #94a3b8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #06b6d4, #8b5cf6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #0891b2, #7c3aed);
}

/* Selection */
::selection {
    background: rgba(6, 182, 212, 0.3);
    color: white;
}

/* Focus States */
.focus-visible:focus {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

/* Responsive Utilities */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .profile-container {
        width: 250px;
        height: 250px;
    }
    
    .timeline-content {
        margin-left: 2rem;
        width: calc(100% - 2rem);
    }
    
    .timeline-dot {
        left: 0.75rem;
    }
    
    .timeline-line {
        left: 0.75rem;
    }
    
    .project-title {
        font-size: 1.25rem;
    }
    
    .project-header {
        padding: 1.5rem;
    }
    
    .project-technologies {
        padding: 0 1.5rem 1rem;
    }
    
    .project-details {
        padding: 0 1.5rem 1.5rem;
    }
}

/* Light Theme Overrides */
body.light {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
}

body.light .navbar {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-color: rgba(6, 182, 212, 0.3);
}

body.light .navbar.scrolled {
    background: rgba(255, 255, 255, 0.2);
}

body.light .mobile-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
}

body.light .hero-name,
body.light .section-title,
body.light .page-title,
body.light .profile-name,
body.light .timeline-title,
body.light .project-title,
body.light .blog-title,
body.light .video-title,
body.light .highlight-card h3,
body.light .footer-title,
body.light .contact-intro h2,
body.light .contact-text h3,
body.light .contact-social h3,
body.light .resume-section h3,
body.light .contact-form-container h2,
body.light .cta-card h3,
body.light .coming-soon-card h3,
body.light .notice-card h3,
body.light .detail-section h4,
body.light .timeline-details h4 {
    color: #1e293b;
}

body.light .hero-subtitle,
body.light .section-description,
body.light .page-description,
body.light .profile-description,
body.light .timeline-description,
body.light .project-summary,
body.light .blog-excerpt,
body.light .video-description,
body.light .footer-description,
body.light .contact-intro p,
body.light .contact-text p,
body.light .contact-text a,
body.light .resume-section p,
body.light .cta-card p,
body.light .coming-soon-card p,
body.light .notice-card p,
body.light .detail-section p,
body.light .checkbox-label,
body.light .form-group label {
    color: #475569;
}

body.light .hero-description,
body.light .stat-label,
body.light .preview-card p,
body.light .highlight-card p,
body.light .blog-meta,
body.light .video-meta,
body.light .timeline-company,
body.light .footer-links a,
body.light .footer-bottom p {
    color: #64748b;
}

body.light .stat-card,
body.light .preview-card,
body.light .highlight-card,
body.light .project-card,
body.light .blog-card,
body.light .video-card,
body.light .timeline-details,
body.light .cta-card,
body.light .coming-soon-card,
body.light .resume-section {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(6, 182, 212, 0.4);
}

body.light .form-group input,
body.light .form-group textarea {
    background: rgba(255, 255, 255, 0.5);
    border-color: #cbd5e1;
    color: #1e293b;
}

body.light .form-group input::placeholder,
body.light .form-group textarea::placeholder {
    color: #64748b;
}

body.light .footer {
    background: rgba(255, 255, 255, 0.4);
    border-top-color: rgba(6, 182, 212, 0.3);
}

body.light .footer-bottom {
    border-top-color: #cbd5e1;
}

/* Journey Page Styles */
.journey-timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.journey-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 1rem;
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.journey-card:hover {
    border-color: rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.1);
}

.journey-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.journey-badge.current {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.journey-badge.growth {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: white;
}

.journey-badge.first {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.journey-badge.development {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.journey-badge.first-job {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
}

.journey-badge.education {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.journey-badge.learning {
    background: linear-gradient(135deg, #84cc16, #65a30d);
    color: white;
}

.journey-badge.beginning {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
}

.journey-header {
    padding: 2rem 2rem 1rem;
    position: relative;
}

.journey-period {
    display: inline-block;
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.journey-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
    padding-right: 6rem;
}

.journey-company {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e1;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.journey-company i {
    width: 1rem;
    height: 1rem;
    color: #06b6d4;
    flex-shrink: 0;
}

.journey-content {
    padding: 0 2rem 2rem;
}

.journey-summary {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.journey-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    min-height: 44px;
    position: relative;
    z-index: 5;
}

.journey-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.journey-toggle:focus {
    outline: 2px solid #06b6d4;
    outline-offset: 2px;
}

.journey-toggle i {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.journey-toggle.expanded i {
    transform: rotate(180deg);
}

.journey-details {
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(6, 182, 212, 0.02);
    border-top: 1px solid rgba(6, 182, 212, 0.1);
    margin-top: 1rem;
    /* Initial collapsed state will be set by JavaScript */
}

.journey-details.expanded {
    /* Expanded state will be managed by JavaScript */
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(6, 182, 212, 0.3);
    display: inline-block;
}

.detail-section p {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.detail-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #06b6d4;
    font-weight: bold;
}

.detail-section strong {
    color: white;
}

/* Mobile Responsiveness for Journey */
@media (max-width: 768px) {
    .journey-timeline {
        padding: 1rem 0;
    }
    
    .journey-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .journey-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .journey-title {
        font-size: 1.25rem;
        padding-right: 4rem;
    }
    
    .journey-badge {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .journey-company {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .journey-toggle {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        min-height: 40px;
    }
    
    .detail-section h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .journey-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .journey-content {
        padding: 0 1rem 1rem;
    }
    
    .journey-title {
        font-size: 1.125rem;
        padding-right: 3.5rem;
    }
    
    .journey-badge {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
    
    .journey-toggle {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-height: 36px;
    }
}

/* Light Theme Overrides for Journey */
body.light .journey-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(6, 182, 212, 0.4);
}

body.light .journey-title,
body.light .detail-section h4,
body.light .detail-section strong {
    color: #1e293b;
}

body.light .journey-company,
body.light .journey-summary,
body.light .detail-section p,
body.light .detail-section li {
    color: #475569;
}

body.light .journey-details {
    background: rgba(6, 182, 212, 0.05);
    border-top-color: rgba(6, 182, 212, 0.2);
}

/* ADDITIONAL MOBILE MENU FIXES */
@media (max-width: 767px) {
    .mobile-menu {
        top: 80px;
    }
    
    .mobile-menu.active {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
}
