/* Martin Fasth - Creative Portfolio Theme */
/* International Journey & Azure Cloud Engineer */

:root {
    /* Color Palette - Inspired by Nordic design & Azure */
    --primary-blue: #0078d4;        /* Azure Blue */
    --secondary-blue: #106ebe;       /* Darker Azure */
    --accent-orange: #ff8c00;        /* Warm accent */
    --nordic-gray: #2f3349;          /* Deep Nordic */
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --success-green: #28a745;
    --warning-yellow: #ffc107;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-warm: linear-gradient(135deg, var(--accent-orange) 0%, #ff6b35 100%);
    --gradient-nordic: linear-gradient(135deg, var(--nordic-gray) 0%, #4a5568 100%);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--nordic-gray);
    position: relative;
    font-weight: 700;
}

.section-title i {
    color: var(--primary-blue);
    margin-right: 1rem;
    font-size: 0.9em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 120, 212, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-light);
}

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

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-text {
    color: var(--nordic-gray);
}

.logo-accent {
    color: var(--primary-blue);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--nordic-gray);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-greeting {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.name-martin {
    color: var(--nordic-gray);
    display: block;
}

.name-fasth {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    margin-bottom: 2rem;
}

.role-text {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.location-journey {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 1rem;
}

.location-item {
    padding: 0.5rem 1rem;
    background: rgba(0, 120, 212, 0.1);
    border-radius: 25px;
    font-weight: 500;
    color: var(--text-dark);
}

.location-item.current {
    background: var(--gradient-primary);
    color: var(--white);
    animation: pulse 2s infinite;
}

.arrow {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

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

.profile-container {
    position: relative;
}

.profile-frame {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: var(--gradient-primary);
    padding: 5px;
    box-shadow: var(--shadow-heavy);
}

.profile-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.02);
}

.profile-badges {
    position: absolute;
    top: -10px;
    right: -10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: var(--shadow-light);
    animation: slideInRight 0.6s ease forwards;
}

.badge.azure {
    background: var(--gradient-primary);
    animation-delay: 0.2s;
}

.badge.languages {
    background: var(--gradient-warm);
    animation-delay: 0.4s;
}

.badge.experience {
    background: var(--gradient-nordic);
    animation-delay: 0.6s;
}

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

/* Journey Section */
.journey {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.92);
    z-index: 1;
}

.journey .container {
    position: relative;
    z-index: 2;
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 80px;
}

.timeline-item.current .timeline-content {
    border-left-color: var(--success-green);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.timeline-marker.sweden {
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
}

.timeline-marker.austria {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

.timeline-marker.hongkong {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
}

.timeline-marker.assemblin {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c00 100%);
}

.timeline-marker.netherlands {
    background: var(--gradient-primary);
}

.timeline-marker.sogeti {
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-blue);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--nordic-gray);
}

.timeline-period {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.experience-highlights {
    margin: 1.5rem 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 120, 212, 0.1);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item i {
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-item span {
    flex: 1;
    line-height: 1.4;
}

.timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.timeline-skills span {
    background: rgba(0, 120, 212, 0.1);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Personal Touch Section */
.personal-touch {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
}

.languages-section h3 {
    color: var(--nordic-gray);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.3rem;
}

.languages-section h3 i {
    color: var(--primary-blue);
    margin-right: 0.5rem;
}

.language-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.language-item {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    gap: 1rem;
}

.lang-name {
    font-weight: 600;
    color: var(--text-dark);
}

.lang-bar {
    height: 8px;
    background: rgba(0, 120, 212, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.lang-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.lang-fill.native {
    width: 100%;
    background: var(--gradient-primary);
}

.lang-fill.fluent {
    width: 90%;
    background: var(--gradient-warm);
}

.lang-level {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Skills Section */
.skills {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.skills .container {
    position: relative;
    z-index: 2;
}

.skills-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-blue);
}

.skills-intro p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

/* Skills Balance Layout */
.skills-balance {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    align-items: start;
}

.skills-side {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.skills-side:hover {
    transform: translateY(-5px);
}

.skills-side.technical {
    border-top: 4px solid var(--primary-blue);
}

.skills-side.soft {
    border-top: 4px solid var(--accent-orange);
}

.skills-header {
    text-align: center;
    margin-bottom: 2rem;
}

.skills-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.skills-header i {
    color: var(--primary-blue);
}

.skills-header h3 {
    font-size: 1.5rem;
    color: var(--nordic-gray);
    margin-bottom: 0.5rem;
}

.skills-header p {
    color: var(--text-light);
    font-style: italic;
}

/* Vertical Skill Items */
.skill-items-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.skill-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.skill-item span {
    flex: 1;
}

.skill-level {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.skill-item.tech .skill-level {
    background: rgba(0, 120, 212, 0.2);
    color: var(--primary-blue);
    border: 1px solid rgba(0, 120, 212, 0.3);
}

.skill-item.human .skill-level {
    background: rgba(255, 140, 0, 0.2);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 140, 0, 0.3);
}

.skill-item.tech {
    background: rgba(0, 120, 212, 0.1);
    color: var(--primary-blue);
    border-left: 3px solid var(--primary-blue);
    box-shadow: 0 2px 8px rgba(0, 120, 212, 0.1);
}

.skill-item.tech:hover {
    background: rgba(0, 120, 212, 0.15);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.2);
}

.skill-item.human {
    background: rgba(255, 140, 0, 0.1);
    color: var(--accent-orange);
    border-left: 3px solid var(--accent-orange);
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.1);
}

.skill-item.human:hover {
    background: rgba(255, 140, 0, 0.15);
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
}

/* Center Bridge */
.skills-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
}

.balance-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.skills-profile-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.skills-profile-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.center-text {
    text-align: center;
    margin-bottom: 1rem;
}

.center-text h4 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: var(--nordic-gray);
}

.center-text p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-light);
    font-style: italic;
}

.bridge-lines {
    position: relative;
    width: 200px;
    height: 40px;
}

.bridge-line {
    position: absolute;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 2px;
    animation: pulse 2s infinite;
}

.bridge-line.left {
    left: 0;
    width: 80px;
    animation-delay: 0s;
}

.bridge-line.right {
    right: 0;
    width: 80px;
    animation-delay: 1s;
}

/* Value Proposition */
.skills-value {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.value-card {
    background: var(--gradient-nordic);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
}

.value-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.value-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Experience Section */
.experience {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 1;
}

.experience .container {
    position: relative;
    z-index: 2;
}

.experience-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.experience-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border-left: 5px solid var(--primary-blue);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.experience-card.current {
    border-left-color: var(--success-green);
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.company-logo.azure {
    background: var(--gradient-primary);
}

.company-logo.tata {
    background: var(--gradient-nordic);
}

.company-logo.electrical {
    background: var(--gradient-warm);
}

.experience-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--nordic-gray);
}

.company {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.experience-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.experience-highlights {
    margin-bottom: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--primary-blue);
    font-size: 1rem;
    width: 20px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-stack span {
    background: rgba(0, 120, 212, 0.1);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.90);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
    width: 20px;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

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

/* Footer */
.footer {
    background: var(--nordic-gray);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-light);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .profile-frame {
        width: 280px;
        height: 280px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .journey-timeline::before {
        left: 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .location-journey {
        flex-direction: column;
        gap: 0.5rem;
    }

    .arrow {
        transform: rotate(90deg);
    }

    .skills-balance {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skills-center {
        order: -1;
        min-height: 200px;
    }
    
    .balance-icon {
        width: 100px;
        height: 100px;
    }
    
    .connection-lines {
        display: none;
    }
    
    .skills-side {
        padding: 1.5rem;
    }
}

/* Certifications Section */
.certifications {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.cert-card.azure {
    border-top-color: var(--primary-blue);
}

.cert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.cert-card.azure .cert-icon {
    background: rgba(0, 120, 212, 0.1);
    color: var(--primary-blue);
}

.cert-content h3 {
    font-size: 1.3rem;
    color: var(--nordic-gray);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cert-issuer {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 120, 212, 0.1);
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-blue);
    width: fit-content;
}

.cert-card.scrum .cert-badge {
    background: rgba(255, 140, 0, 0.1);
    color: var(--accent-orange);
}

/* Company Logo Styles */
.company-logo.sogeti {
    background: linear-gradient(135deg, #0078d4 0%, #106ebe 100%);
    color: var(--white);
}

.company-logo.assemblin {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c00 100%);
    color: var(--white);
}

.company-logo.stromstyrkan {
    background: linear-gradient(135deg, #2f3349 0%, #4a5568 100%);
    color: var(--white);
}

/* Responsive Certifications */
@media (max-width: 768px) {
    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cert-card {
        padding: 1.5rem;
    }
}

/* Projects Section */
.projects {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.02) 0%, rgba(255, 140, 0, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.project-card:hover::before {
    opacity: 1;
}

.project-card.featured {
    border-top-color: var(--primary-blue);
}

.project-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.project-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(0, 120, 212, 0.1);
    color: var(--primary-blue);
    font-size: 1.8rem;
    flex-shrink: 0;
}

.project-info h3 {
    font-size: 1.5rem;
    color: var(--nordic-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.project-type {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.project-period {
    color: var(--text-light);
    font-size: 0.85rem;
}

.project-content > p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.project-highlights {
    margin-bottom: 2rem;
}

.project-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.project-highlights .highlight-item i {
    color: var(--primary-blue);
    width: 20px;
    text-align: center;
}

.project-tech-stack {
    margin-bottom: 2rem;
}

.project-tech-stack h4 {
    color: var(--nordic-gray);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.tech-tag.frontend {
    background: rgba(255, 140, 0, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(255, 140, 0, 0.2);
}

.tech-tag.backend {
    background: rgba(47, 51, 73, 0.1);
    color: var(--nordic-gray);
    border: 1px solid rgba(47, 51, 73, 0.2);
}

.tech-tag.cloud {
    background: rgba(0, 120, 212, 0.1);
    color: var(--primary-blue);
    border: 1px solid rgba(0, 120, 212, 0.2);
}

.tech-tag.database {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success-green);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.tech-tag.storage {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

.tech-tag.security {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.tech-tag.devops {
    background: rgba(111, 66, 193, 0.1);
    color: #6f42c1;
    border: 1px solid rgba(111, 66, 193, 0.2);
}

.tech-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-achievements {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.achievement {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.achievement i {
    color: var(--accent-orange);
    width: 20px;
    text-align: center;
}

/* Responsive Projects */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
    
    .project-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tech-tags {
        gap: 0.4rem;
    }
    
    .tech-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Azure Section Styles */
.azure-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0078d4 0%, #005a9e 50%, #004578 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.azure-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 188, 242, 0.1);
    opacity: 0.3;
    pointer-events: none;
}

.azure-content {
    position: relative;
    z-index: 1;
}

.azure-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.azure-subtitle i {
    color: #00bcf2;
    font-size: 1.8rem;
}

/* Azure Certifications */
.azure-certifications {
    margin-bottom: 5rem;
}

.azure-certs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.azure-cert-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.azure-cert-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.azure-cert-card.featured {
    border: 2px solid #00bcf2;
    background: rgba(0, 188, 242, 0.1);
}

.azure-cert-card .cert-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.cert-icon.azure-fundamentals {
    background: linear-gradient(135deg, #00bcf2, #0078d4);
}

.cert-icon.azure-data {
    background: linear-gradient(135deg, #ff6b35, #e55100);
}

.cert-icon.azure-admin {
    background: linear-gradient(135deg, #32cd32, #228b22);
}

.azure-cert-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.cert-code {
    font-size: 1rem;
    color: #00bcf2;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cert-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cert-skills span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: white;
}

.cert-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #00bcf2;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Career Aspirations */
.azure-aspirations {
    margin-bottom: 5rem;
}

.aspirations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.aspiration-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.aspiration-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.aspiration-card.primary {
    border-left: 4px solid #00bcf2;
}

.aspiration-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00bcf2, #0078d4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.aspiration-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.aspiration-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.aspiration-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.aspiration-skills span {
    background: rgba(0, 188, 242, 0.2);
    border: 1px solid rgba(0, 188, 242, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: white;
}

/* Azure Technologies */
.azure-technologies {
    margin-bottom: 5rem;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-category h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tech-category h4 i {
    color: #00bcf2;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    border-left: 3px solid #00bcf2;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Learning Path */
.azure-learning {
    margin-bottom: 3rem;
}

.learning-path {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.learning-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.learning-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.learning-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.learning-item.completed .learning-icon {
    background: linear-gradient(135deg, #32cd32, #228b22);
    color: white;
}

.learning-item.current .learning-icon {
    background: linear-gradient(135deg, #00bcf2, #0078d4);
    color: white;
    animation: pulse 2s infinite;
}

.learning-item.planned .learning-icon {
    background: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

.learning-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.learning-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .azure-section {
        padding: 4rem 0;
    }
    
    .azure-subtitle {
        font-size: 1.5rem;
    }
    
    .azure-certs-grid,
    .aspirations-grid,
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .aspiration-card,
    .azure-cert-card,
    .tech-category {
        padding: 1.5rem;
    }
    
    .learning-item {
        flex-direction: column;
        text-align: center;
    }
    
    .learning-icon {
        align-self: center;
    }
}

/* Journey Map Styles */
.journey-map-container {
    margin: 4rem 0;
    padding: 0 2rem;
}

#map {
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive map styles */
@media (max-width: 768px) {
    #map {
        height: 400px;
        border-radius: 12px;
    }
    
    .journey-map-container {
        padding: 0 1rem;
        margin: 2rem 0;
    }
}

@media (max-width: 480px) {
    #map {
        height: 350px;
        border-radius: 10px;
    }
    
    .journey-map-container {
        padding: 0 0.5rem;
    }
}

/* Custom Leaflet control styles */
.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.leaflet-control-zoom a {
    background: rgba(20, 25, 40, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.leaflet-control-zoom a:hover {
    background: rgba(0, 123, 255, 0.8) !important;
    transform: scale(1.05);
}

/* Custom popup styles */
.leaflet-popup-content-wrapper {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

.leaflet-popup-content {
    margin: 0 !important;
}

.leaflet-popup-tip {
    background: rgba(20, 25, 40, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Custom marker animations */
.custom-div-icon {
    background: none !important;
    border: none !important;
}

.custom-marker {
    transition: all 0.3s ease;
    cursor: pointer;
}

.custom-marker:hover {
    transform: scale(1.2) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4) !important;
}

/* Journey path animation */
.journey-path {
    animation: dash 3s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: -30;
    }
}

/* Mobile touch improvements */
@media (max-width: 768px) {
    .custom-marker {
        width: 35px !important;
        height: 35px !important;
    }
    
    .leaflet-control-zoom a {
        width: 35px;
        height: 35px;
        line-height: 33px;
        font-size: 16px;
    }
}

/* Start Page Styles */
.start-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.start-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.start-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.start-content {
    position: relative;
    z-index: 2;
}

.start-greeting {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.start-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 800;
}

.start-subtitle {
    margin-bottom: 2rem;
}

.start-description {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Choice Cards */
.choice-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.choice-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.choice-card.blog-card::before {
    background: var(--gradient-warm);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

.blog-card .card-icon {
    background: var(--gradient-warm);
}

.choice-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--nordic-gray);
}

.choice-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.card-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.card-features i {
    color: var(--primary-blue);
    width: 16px;
}

.choice-btn {
    width: 100%;
    justify-content: center;
}

/* Quick Links */
.quick-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 120, 212, 0.2);
}

.start-image {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Blog Styles */
.blog-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.blog-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.blog-title {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.blog-title i {
    color: var(--accent-orange);
    margin-right: 1rem;
}

.blog-subtitle {
    font-size: 1.3rem;
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Content */
.blog-content {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary-blue);
    background: transparent;
    color: var(--primary-blue);
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.search-box {
    position: relative;
    min-width: 250px;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 25px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

/* Blog Posts */
.blog-posts {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-blue);
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.blog-post.featured {
    border-left-color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(0, 120, 212, 0.1);
}

.post-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 120, 212, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.9rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.post-content {
    padding: 1.5rem 2rem 2rem 2rem;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--nordic-gray);
    line-height: 1.3;
}

.post-excerpt {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(0, 120, 212, 0.1);
    color: var(--primary-blue);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.post-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-share {
    display: flex;
    gap: 0.5rem;
}

.share-btn,
.bookmark-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 120, 212, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.share-btn:hover,
.bookmark-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.load-more-container {
    text-align: center;
}

.no-posts {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-posts i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.no-posts h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--nordic-gray);
}

/* Newsletter */
.newsletter {
    padding: 4rem 0;
    background: var(--nordic-gray);
    color: var(--white);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.newsletter-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.newsletter-text h3 i {
    color: var(--accent-orange);
    margin-right: 0.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 25px;
    font-family: inherit;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .start-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .start-title {
        font-size: 3rem;
    }
    
    .choice-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .quick-links {
        flex-direction: column;
        align-items: center;
    }
    
    .blog-title {
        font-size: 2.5rem;
    }
    
    .blog-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .filter-buttons {
        justify-content: center;
    }
    
    .search-box {
        min-width: auto;
    }
    
    .post-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .post-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .start-title {
        font-size: 2.5rem;
    }
    
    .choice-card {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 2rem;
    }
    
    .filter-buttons {
        flex-direction: column;
    }
    
    .filter-btn {
        justify-content: center;
    }
    
    .post-content {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .post-header {
        padding: 1rem 1.5rem 0.5rem 1.5rem;
    }
}

/* Connection Line Animations */
.connection-line {
    stroke-dasharray: 2, 1;
    stroke-dashoffset: 0;
    animation: pathFlow 3s linear infinite;
    opacity: 0.8;
    transition: all 0.3s ease;
}

@keyframes pathFlow {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 6; }
}

.journey-map:hover .connection-line {
    opacity: 1;
    stroke-width: 0.5;
    animation-duration: 2s;
}

/* Enhanced Marker Animations */
.location-marker .marker-pin {
    position: relative;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.9) 0%, rgba(255, 107, 53, 0.9) 100%);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3), 0 0 0 3px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { transform: rotate(-45deg) scale(1); }
    50% { transform: rotate(-45deg) scale(1.1); }
}

.location-marker:hover .marker-pin {
    transform: rotate(-45deg) scale(1.3);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(0, 123, 255, 0.95) 100%);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4), 0 0 0 4px rgba(255, 255, 255, 0.4), 0 0 0 8px rgba(255, 107, 53, 0.2);
    animation: none;
}

/* Map Container Hover Effects */
.journey-map {
    transition: all 0.4s ease;
}

.journey-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Custom Map Continent Hover */
.custom-world-map path {
    transition: all 0.3s ease;
}

.custom-world-map:hover path {
    fill: url(#landGradient);
    filter: url(#mapGlow) brightness(1.1);
}
