/* ==================== PREMIUM PORTFOLIO CSS ==================== */

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Color Palette */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #ec4899;
    --accent: #14b8a6;
    --gold: #f59e0b;
    
    /* Neutrals */
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --light-gray: #cbd5e1;
    --bg-light: #f8fafc;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-warm: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-cool: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --font-mono: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 20px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== ANIMATED BACKGROUND ==================== */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, #f8fafc 0%, #e0e7ff 100%);
}

/* ==================== NAVIGATION - PREMIUM ==================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

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

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-md);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
}

.nav-link i {
    font-size: 0.9rem;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 5px;
    transition: var(--transition);
}

/* ==================== HERO SECTION - COMPLETE FIXED ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 100px;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
    isolation: isolate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,154.7C672,160,768,192,864,197.3C960,203,1056,181,1152,154.7C1248,128,1344,96,1392,80L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 10;
    will-change: transform, opacity;
    transition: opacity 0.1s ease;
}

.hero-text {
    color: white;
    position: relative;
    z-index: 10;
    max-width: 650px;
}

.badge-container {
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.8s ease;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.badge.pulse i {
    animation: pulse 2s infinite;
    color: #4ade80;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.greeting {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.name-highlight {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInLeft 0.8s ease 0.4s both;
}

.typing-container {
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    min-height: 2.5rem;
    animation: fadeInLeft 0.8s ease 0.6s both;
}

.cursor {
    animation: blink 1s infinite;
    color: #ffd700;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.quote-icon {
    opacity: 0.5;
    font-size: 0.8rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.9s both;
    max-width: 600px;
    position: relative;
    z-index: 150;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    transition: var(--transition);
    min-width: 0;
    position: relative;
    z-index: 150;
    pointer-events: auto;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 1s both;
    position: relative;
    z-index: 150;
    flex-wrap: nowrap;
    isolation: isolate;
}

.btn {
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid transparent;
    position: relative;
    z-index: 150;
    cursor: pointer;
    white-space: nowrap;
    pointer-events: auto;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.social-links-hero {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 1.2s both;
    position: relative;
    z-index: 150;
    isolation: isolate;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    z-index: 150;
    cursor: pointer;
    pointer-events: auto;
}

.social-icon:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.4s both;
    position: relative;
    z-index: 5;
}

.profile-wrapper {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    will-change: transform;
}

.profile-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.ring-1 {
    width: 450px;
    height: 450px;
}

.ring-2 {
    width: 400px;
    height: 400px;
    animation-duration: 15s;
    animation-direction: reverse;
}

.ring-3 {
    width: 350px;
    height: 350px;
    animation-duration: 25s;
}

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

.profile-card-premium {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid white;
    box-shadow: var(--shadow-xl);
    background: white;
    z-index: 2;
}

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

.profile-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 1.75rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.profile-badge i {
    font-size: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    z-index: 5;
    pointer-events: none;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    margin: -5px;
    animation: arrow 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes arrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-10px, -10px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(10px, 10px); }
}

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

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

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

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

/* ==================== SECTION HEADER ==================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== ABOUT SECTION ==================== */
.about {
    padding: var(--section-padding);
    background: white;
    position: relative;
    z-index: 100;
    isolation: isolate;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-card {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--bg-light);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

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

.about-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
}

.info-value {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.subsection-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.subsection-title i {
    color: var(--primary);
}

.education-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.education-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

.education-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.education-year {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.education-content {
    display: flex;
    gap: 1.5rem;
}

.education-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
}

.education-details h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.degree {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gpa {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.gpa i {
    color: var(--gold);
}

.courses {
    color: var(--gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.courses strong {
    color: var(--dark);
}

/* ==================== MY STORY SECTION ==================== */
.story-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.story-section .section-header {
    position: relative;
    z-index: 1;
}

.story-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.story-section .section-title {
    color: white;
}

.story-section .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.story-hero {
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.quote-large {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.quote-large i {
    font-size: 2rem;
    color: #ffd700;
    opacity: 0.5;
}

.quote-large h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: white;
    margin: 1rem 0;
    line-height: 1.4;
}

.story-content {
    position: relative;
    z-index: 1;
    margin-top: 4rem;
}

.story-chapter {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.story-chapter::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
}

.story-chapter:last-of-type::before {
    display: none;
}

.chapter-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chapter-content {
    background: white;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
    display: flex;
    gap: 2rem;
    transition: var(--transition);
}

.chapter-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.chapter-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.chapter-text {
    flex: 1;
}

.chapter-text h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.chapter-highlight {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.highlight-badge {
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.highlight-badge.risk {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.highlight-badge.success {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.highlight-badge.current {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.highlight-location {
    padding: 0.5rem 1.5rem;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chapter-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.chapter-text strong {
    color: var(--primary);
    font-weight: 700;
}

.story-quote {
    padding: 1.5rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    border-radius: 10px;
    font-style: italic;
    color: var(--dark);
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.story-quote.highlight {
    background: var(--gradient-primary);
    color: white;
    border-left: none;
    text-align: center;
    font-weight: 600;
}

.realization-box {
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.realization-box i {
    font-size: 2rem;
    color: #d97706;
}

.realization-box p {
    margin: 0;
    color: var(--dark);
    font-weight: 600;
    font-style: italic;
}

.stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-mini {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-mini .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.stat-mini .stat-info {
    display: flex;
    flex-direction: column;
}

.stat-mini .stat-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-mini .stat-label {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Three Languages */
.three-languages {
    margin: 5rem 0;
    padding: 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.languages-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.languages-title i {
    color: var(--primary);
}

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

.language-card-story {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
}

.language-card-story:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.lang-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
}

.language-card-story .lang-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.language-card-story h4 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
    text-align: center;
}

.language-card-story p {
    color: var(--gray);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 1.5rem;
}

.thanks {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.lang-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.lang-skills span {
    padding: 0.5rem 1rem;
    background: white;
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid var(--primary);
}

/* Boots on the Ground */
.boots-section {
    margin: 4rem 0;
    padding: 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.boots-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.boots-header i {
    font-size: 2.5rem;
    color: var(--primary);
}

.boots-header h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--dark);
}

.boots-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.boots-achievements {
    display: grid;
    gap: 2rem;
}

.boot-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    transition: var(--transition);
}

.boot-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

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

.boot-item p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.boot-item strong {
    color: var(--primary);
    font-weight: 700;
}

/* Beyond Machine - FIXED */
.beyond-machine {
    margin: 4rem 0;
    padding: 3rem;
    background: white !important;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.beyond-content {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.beyond-icon {
    width: 100px;
    height: 100px;
    border-radius: 25px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.beyond-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--dark) !important;
    margin-bottom: 1rem;
}

.beyond-text p {
    color: var(--gray) !important;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.beyond-text strong {
    color: var(--primary) !important;
    font-weight: 700;
}

.lesson-box {
    padding: 1.5rem;
    background: var(--gradient-primary) !important;
    color: white !important;
    border-radius: 15px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.lesson-box i {
    font-size: 1.5rem;
    opacity: 0.5;
    color: white !important;
}

.lesson-box p {
    color: white !important;
    margin: 0 !important;
}

/* Management Vision Section */
.management-vision {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    border: 2px solid var(--primary-light);
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
}

.vision-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.vision-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.vision-header h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--dark);
    margin: 0;
}

.vision-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vision-intro strong {
    color: var(--primary);
    font-weight: 700;
}

.vision-goals {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.goal-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 5px solid var(--gold);
}

.goal-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary);
}

.goal-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.goal-text h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.goal-text p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
}

.goal-text strong {
    color: var(--primary);
    font-weight: 700;
}

.goal-text em {
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
}

.vision-highlight {
    padding: 2rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.vision-highlight i {
    font-size: 2rem;
    color: white;
    margin-top: 0.25rem;
}

.vision-highlight p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.vision-highlight strong {
    font-weight: 800;
    text-decoration: underline;
}

/* Toolkit */
.toolkit-section {
    margin: 4rem 0;
    padding: 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.toolkit-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.toolkit-title i {
    color: var(--primary);
}

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

.toolkit-category {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 20px;
}

.toolkit-category h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toolkit-category h4 i {
    color: var(--primary);
}

.toolkit-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.toolkit-items span {
    padding: 0.75rem 1.25rem;
    background: white;
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--transition);
}

.toolkit-items span:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Story CTA */
.story-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-content strong {
    color: var(--primary);
    font-weight: 700;
}

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

.cta-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-stat {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 20px;
}

.cta-stat i {
    font-size: 2.5rem;
    color: var(--primary);
}

.cta-stat div {
    display: flex;
    flex-direction: column;
}

.cta-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.cta-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 600;
}

/* ==================== EXPERIENCE SECTION ==================== */
.experience {
    padding: var(--section-padding);
    background: white;
}

.experience-container {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.experience-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid var(--bg-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: var(--transition);
}

.experience-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.experience-card:hover::before {
    transform: scaleY(1);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.exp-company {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.company-logo {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.exp-company h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.position {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.exp-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: right;
}

.exp-date,
.exp-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray);
    font-size: 0.9rem;
}

.exp-date i,
.exp-location i {
    color: var(--primary);
}

.exp-achievements {
    list-style: none;
    margin-bottom: 1.5rem;
}

.exp-achievements li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    color: var(--gray);
    line-height: 1.7;
}

.exp-achievements i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.exp-achievements strong {
    color: var(--primary);
    font-weight: 700;
}

.exp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

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

/* ==================== SKILLS SECTION ==================== */
.skills {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.skills-showcase {
    margin-top: 3rem;
}

.skill-category-premium {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.category-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--dark);
}

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

.skill-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.skill-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.skill-info {
    flex: 1;
}

.skill-info h4 {
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.skill-level {
    height: 8px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.skill-level span {
    display: block;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1.5s ease;
}

.skill-percent {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.soft-skills-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.soft-skill-category {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.skill-tags-premium {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.skill-tag-premium {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: 2px solid var(--bg-light);
    border-radius: 50px;
    color: var(--dark);
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: default;
}

.skill-tag-premium i {
    color: var(--primary);
}

.skill-tag-premium:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.skill-tag-premium:hover i {
    color: white;
}

.language-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.language-card {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.language-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.lang-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.language-card h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.lang-level {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
}

.lang-level.native {
    background: var(--gradient-primary);
    color: white;
}

.lang-level.proficient {
    background: var(--gradient-success);
    color: white;
}

/* ==================== PROJECTS SECTION ==================== */
.projects {
    padding: var(--section-padding);
    background: white;
}

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

.project-card-premium {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border: 2px solid var(--bg-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.project-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.project-icon-premium {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: var(--shadow-md);
}

.project-badge {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.project-card-premium h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.project-card-premium > p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex: 1;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bg-light);
}

.project-tech {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.project-tech span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray);
}

.project-tech i {
    color: var(--primary);
}

.project-impact {
    padding: 0.5rem 1rem;
    background: var(--gradient-success);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==================== VOLUNTEERING SECTION ==================== */
.volunteering {
    padding: var(--section-padding);
    background: var(--bg-light);
}

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

.volunteer-card-premium {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.volunteer-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.volunteer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: var(--shadow-glow);
}

.volunteer-card-premium h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.volunteer-org {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.volunteer-period {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.volunteer-desc {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.volunteer-impact {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.volunteer-impact span {
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    background: var(--bg-light);
    padding: 100px 20px;
}

.contact-cards-horizontal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.contact-card-horizontal {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-card-horizontal:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.15);
}

.card-icon-left {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.email-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.location-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
}

.card-content-right {
    flex: 1;
}

.card-content-right h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.card-content-right a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
}

.card-content-right p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.card-content-right .main-text {
    color: var(--dark) !important;
    font-weight: 600;
    font-size: 1.05rem !important;
}

.card-content-right .sub-text {
    color: var(--primary) !important;
    font-weight: 600;
}

.social-links-bottom {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.social-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.social-circle:hover {
    transform: translateY(-8px) scale(1.1);
}

.linkedin-circle {
    background: linear-gradient(135deg, #0077b5 0%, #00a0dc 100%);
}

.email-circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.whatsapp-circle {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.github-circle {
    background: linear-gradient(135deg, #333 0%, #24292e 100%);
}


/* ==================== FOOTER ==================== */
.footer-premium {
    padding: 3rem 20px 1.5rem;
    background: var(--dark);
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.footer-logo p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

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

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.footer-bottom i {
    color: #f43f5e;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top-premium {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-xl);
    z-index: 999;
}

.back-to-top-premium.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
}

/* ==================== RESPONSIVE DESIGN - COMPLETE & FINAL ==================== */

/* Large Tablets & Small Laptops */
@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }
    
    .name-highlight {
        font-size: 3rem;
    }
    
    .profile-wrapper {
        width: 400px;
        height: 400px;
    }
    
    .profile-card-premium {
        width: 300px;
        height: 300px;
    }
    
    .ring-1 { width: 400px; height: 400px; }
    .ring-2 { width: 360px; height: 360px; }
    .ring-3 { width: 320px; height: 320px; }
}

/* Tablets */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 20px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section */
    .hero {
        padding: 120px 20px 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-image {
        order: -1;
    }
    
    .name-highlight {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-stats {
        max-width: 100%;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .social-links-hero {
        justify-content: center;
    }
    
    .profile-wrapper {
        width: 350px;
        height: 350px;
    }
    
    .profile-card-premium {
        width: 260px;
        height: 260px;
    }
    
    .ring-1 { width: 350px; height: 350px; }
    .ring-2 { width: 310px; height: 310px; }
    .ring-3 { width: 270px; height: 270px; }
    
    /* Sections */
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .story-chapter {
        grid-template-columns: 1fr;
    }
    
    .story-chapter::before {
        display: none;
    }
    
    .chapter-number {
        margin: 0 auto 1.5rem;
    }
    
    .story-cta {
        grid-template-columns: 1fr;
    }
    
    .languages-grid {
        grid-template-columns: 1fr;
    }
    
    .toolkit-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
    /* Navigation */
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-name {
        font-size: 1rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0.5rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        width: 90%;
        margin: 0 auto;
        justify-content: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    /* ==================== HERO SECTION - MOBILE FIX ==================== */
    .hero {
        padding: 100px 15px 60px;
        min-height: auto;
    }
    
    .hero-content {
        gap: 2rem;
        transform: none !important;
        opacity: 1 !important;
        will-change: auto !important;
    }
    
    .hero-text {
        transform: none !important;
        opacity: 1 !important;
    }
    
    .greeting {
        font-size: 1.2rem;
    }
    
    .name-highlight {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        min-height: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    
    /* ==================== FIX BUTTONS DISAPPEARING ==================== */
    .hero-buttons {
        position: relative !important;
        z-index: 300 !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .btn {
        position: relative !important;
        z-index: 300 !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.9rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        backface-visibility: hidden;
    }
    
    .btn:active {
        transform: scale(0.98) !important;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto 1.5rem;
        gap: 1rem;
        position: relative !important;
        z-index: 300 !important;
        transform: none !important;
        opacity: 1 !important;
    }
    
    .stat-item {
        padding: 1rem 0.75rem;
        position: relative !important;
        z-index: 300 !important;
        pointer-events: auto !important;
        transform: none !important;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .social-links-hero {
        justify-content: center;
        gap: 0.75rem;
        position: relative !important;
        z-index: 300 !important;
        transform: none !important;
        opacity: 1 !important;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        position: relative !important;
        z-index: 300 !important;
        pointer-events: auto !important;
        touch-action: manipulation;
        transform: none !important;
    }
    
    .profile-wrapper {
        width: 280px;
        height: 280px;
        transform: none !important;
    }
    
    .profile-card-premium {
        width: 220px;
        height: 220px;
    }
    
    .ring-1 { width: 280px; height: 280px; }
    .ring-2 { width: 250px; height: 250px; }
    .ring-3 { width: 220px; height: 220px; }
    
    .profile-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
        bottom: 10px;
    }
    
    .hero-image {
        transform: none !important;
    }
    
    /* Sections */
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .about-card h3 {
        font-size: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .subsection-title {
        font-size: 1.6rem;
    }
    
    .education-card {
        padding: 1.5rem;
    }
    
    .education-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .education-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .education-details {
        text-align: center;
    }
    
    /* Story Section */
    .quote-large h3 {
        font-size: 1.6rem;
        padding: 0 1rem;
    }
    
    .chapter-content {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .chapter-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin: 0 auto;
    }
    
    .chapter-text h3 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .chapter-highlight {
        justify-content: center;
    }
    
    .stats-mini {
        grid-template-columns: 1fr;
    }
    
    .beyond-content {
        flex-direction: column;
        text-align: center;
    }
    
    .beyond-icon {
        margin: 0 auto;
    }
    
    .vision-header {
        flex-direction: column;
        text-align: center;
    }
    
    .vision-header h3 {
        font-size: 1.8rem;
    }
    
    .goal-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .goal-icon {
        margin: 0 auto;
    }
    
    .vision-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    /* Skills Section */
    .skills-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .skill-card {
        padding: 1.25rem;
    }
    
    /* Projects Section */
    .projects-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .project-card-premium {
        padding: 1.5rem;
    }
    
    .project-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    /* Volunteering Section */
    .volunteer-grid-premium {
        grid-template-columns: 1fr;
    }
    
    /* Contact Section */
    .contact-wrapper {
        gap: 2rem;
    }
    
    .contact-form-premium {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group-premium input,
    .form-group-premium textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    /* Hero Section */
    .hero {
        padding: 90px 10px 50px;
    }
    
    .greeting {
        font-size: 1rem;
    }
    
    .name-highlight {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .hero-stats {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 11px 20px !important;
        font-size: 0.85rem !important;
        gap: 0.5rem;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .profile-wrapper {
        width: 240px;
        height: 240px;
    }
    
    .profile-card-premium {
        width: 180px;
        height: 180px;
        border: 3px solid white;
    }
    
    .ring-1 { width: 240px; height: 240px; }
    .ring-2 { width: 210px; height: 210px; }
    .ring-3 { width: 180px; height: 180px; }
    
    .profile-badge {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    /* Sections */
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .section-description {
        font-size: 0.95rem;
    }
    
    /* Story Section */
    .quote-large {
        padding: 2rem 1rem;
    }
    
    .quote-large h3 {
        font-size: 1.3rem;
    }
    
    .quote-large i {
        font-size: 1.5rem;
    }
    
    .chapter-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .chapter-content {
        padding: 1.25rem;
    }
    
    .chapter-text h3 {
        font-size: 1.2rem;
    }
    
    .chapter-text p {
        font-size: 0.9rem;
    }
    
    .highlight-badge,
    .highlight-location {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .three-languages,
    .boots-section,
    .beyond-machine,
    .management-vision,
    .toolkit-section {
        padding: 2rem 1.5rem;
    }
    
    .languages-title,
    .boots-header h3,
    .beyond-text h3,
    .vision-header h3,
    .toolkit-title {
        font-size: 1.8rem;
    }
    
    /* Cards */
    .about-card,
    .education-card,
    .experience-card,
    .project-card-premium,
    .volunteer-card-premium {
        padding: 1.25rem;
    }
    
    /* Logo */
    .logo-name {
        font-size: 0.95rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        bottom: 20px;
    }
    
    .mouse {
        width: 25px;
        height: 45px;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .name-highlight {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .profile-wrapper {
        width: 220px;
        height: 220px;
    }
    
    .profile-card-premium {
        width: 160px;
        height: 160px;
    }
    
    .ring-1 { width: 220px; height: 220px; }
    .ring-2 { width: 190px; height: 190px; }
    .ring-3 { width: 160px; height: 160px; }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 10px 18px !important;
        font-size: 0.8rem !important;
    }
}

/* Landscape Mode for Phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        transform: none !important;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .profile-wrapper {
        width: 220px;
        height: 220px;
    }
    
    .profile-card-premium {
        width: 160px;
        height: 160px;
    }
    
    .ring-1 { width: 220px; height: 220px; }
    .ring-2 { width: 190px; height: 190px; }
    .ring-3 { width: 160px; height: 160px; }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        max-width: 500px;
        margin: 0 0 1.5rem 0;
    }
    
    .hero-buttons {
        flex-direction: row !important;
        justify-content: flex-start;
    }
    
    .btn {
        width: auto !important;
    }
    
    .social-links-hero {
        justify-content: flex-start;
    }
}

/* ==================== SUCCESS MESSAGE ==================== */
.form-message-premium {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    display: none;
    animation: slideInUp 0.5s ease;
}

.form-message-premium.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    border: 2px solid #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== CONTACT METHODS ONLY ==================== */
.contact-methods-only {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.social-links-contact-center {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.contact-note {
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-methods-only {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

