/* Map Section Styles */
.map-section {
    width: 100vw;
    max-width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.map-image-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100%;
    min-height: 320px;
    height: 48vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.map-image {
    width: 100vw;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.5) brightness(0.92) saturate(1.1);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    opacity: 0.28;
}
.map-section:hover .map-center-text{
    opacity: 1;
}
.map-gradient {
    position: absolute;
    left: 0;
    width: 100%;
    height: 10%;
    z-index: 2;
    pointer-events: none;
}
.map-gradient-top {
    top: 0;
    background: linear-gradient(to bottom, #000 10%, rgba(0,0,0,0) 100%);
}
.map-gradient-bottom {
    bottom: 0;
    background: linear-gradient(to top, #000 10%, rgba(0,0,0,0) 100%);
}
.map-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
    padding: 0 16px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.map-center-text span {
    color: #fff;
    font-weight: 800;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 32px rgba(0,0,0,0.45), 0 1px 0 #000;
    display: inline-block;
}
@media (max-width: 900px) {
    .map-image-wrapper {
        height: 56vw;
        min-height: 180px;
    }
    .map-center-text span {
        font-size: clamp(1.3rem, 7vw, 2.8rem);
    }
}
@media (max-width: 600px) {
    .map-image-wrapper {
        height: 38vw;
        min-height: 120px;
    }
    .map-center-text span {
        font-size: clamp(1.1rem, 8vw, 2.1rem);
    }
}
.bento-web-image-wrapper {
    margin-top: 0px;
    width: 100%;
}
.bento-web-image-wrapper img {
    object-fit: cover;
    align-self: center;
}

@media (max-width: 600px) {
    .bento-sugary-image-wrapper,
    .bento-sugary-image,
    .bento-sugary-gradient {
        display: none !important;
    }
}
/* Sugary App bento card image styles */
.bento-sugary-flex {
    display: flex;
    align-items: stretch;
    position: relative;
    width: 100%;
    gap: 0;
}
.bento-sugary-content {
    flex: 1 1 0;
    min-width: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.bento-sugary-image-wrapper {
    position: absolute;
    right: 0;
    display: flex;
    align-items: stretch;
    height: 100%;
    min-width: 120px;
    max-width: 260px;
    flex: 0 1 32%;

    mask: linear-gradient(to left, #000 0%, #000 90%, transparent 100%);
    -webkit-mask: linear-gradient(to left, #000 0%, #000 85%, transparent 100%);
}
.bento-sugary-image {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: cover;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
    display: block;
    position: relative;
    z-index: 2;
}
.bento-sugary-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 18px;
    z-index: -1;
}
.bento-sugary-gradient {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 100%;
    background: linear-gradient(to right, rgba(24,24,24,0.92) 0%, rgba(24,24,24,0.0) 100%);
    z-index: 3;
    pointer-events: none;
    border-top-right-radius: 18px;
    border-bottom-right-radius: 18px;
}
/* Divider above buttons in hero */
.cta-divider {
        height: 1px;
        width: 32px;
        background: #fff;
        opacity: 0.15;
        margin: 32px 0 24px 0;
}

@media (max-width: 768px) {
    .cta-divider {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-accent: #666666;
    --border-primary: rgba(255, 255, 255, 0.06);
    --border-secondary: rgba(255, 255, 255, 0.12);
    --accent-primary: #ffffff;
    --accent-secondary: #333333;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    font-feature-settings: "kern" 1, "liga" 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scroll Indicator - Desktop Only */
@media (min-width: 769px) {
    /* Hide default scrollbar */
    ::-webkit-scrollbar {
        display: none;
    }
    
    html {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    /* Custom scroll indicator */
    .scroll-indicator {
        position: fixed;
        right: 24px;
        top: 50%;
        transform: translateY(-50%);
        width: 16px;
        height: 90vh;
        background: transparent;
        border-radius: 8px;
        z-index: 1000;
        pointer-events: auto;
        overflow: hidden;
        cursor: pointer;
        padding: 0 7px;
        display: flex;
        justify-content: center;
    }
    
    .scroll-indicator::after {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 1px;
        pointer-events: none;
    }
    
    .scroll-indicator::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: var(--scroll-progress, 0%);
        background: rgba(255, 255, 255, 0.8);
        border-radius: 1px;
        transition: height 0.1s ease-out;
        pointer-events: none;
        z-index: 1;
    }
    
    .scroll-dot {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.3);
        z-index: 2;
        cursor: grab;
        pointer-events: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .scroll-dot::before {
        content: '';
        width: 8px;
        height: 8px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        transition: all 0.2s ease;
    }
    
    .scroll-dot:active {
        cursor: grabbing;
    }
    
    .scroll-indicator:hover::after {
        background: rgba(255, 255, 255, 0.15);
    }
    
    .scroll-indicator:hover .scroll-dot {
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 0 16px rgba(255, 255, 255, 0.5);
        transform: translateX(-50%) scale(1.1);
    }
    
    .scroll-indicator:hover .scroll-dot::before {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.2);
    }
}

/* Remove animated background */
.bg-animation {
    display: none;
}

/* Container */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero-image-fullscreen {
    position: relative;
    width: auto;
    max-width: 40vw;
    min-width: 300px;
    height: 100vh;
    z-index: 1;
    flex-shrink: 0;
}

.hero-image-fullscreen::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 15%;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, var(--bg-primary) 100%);
    z-index: 2;
    display: none;
}

.profile-pic-fullscreen {
    width: 100%;
    object-fit: contain;
    object-position: left center;
    filter: contrast(1.08);
    max-height: 100%;
    mask: linear-gradient(to bottom, #000 0%, #000 85%, transparent 100%);
    -webkit-mask: linear-gradient(to bottom, #000 0%, #000 85%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 120px 80px 120px 80px;
    background: var(--bg-primary);
}

.hero-text {
    max-width: 100%;
    width: 100%;
    animation: slideInRight 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Typewriter effect */
.typewriter {
    font-size: 21px;
    color: var(--text-primary);
    margin-bottom: 24px;
    min-height: 24px;
    font-weight: 400;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.02em;
}

.typewriter-cursor {
    opacity: 1;
    animation: blink 1s infinite;
    color: var(--text-primary);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-name {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 800;
    margin: 24px 0;
    color: var(--text-primary);
    letter-spacing: -0.04em;
    line-height: 0.9;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 520px;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 64px;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid transparent;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.btn:hover::before {
    transform: translateX(0);
}

.btn i, .btn span {
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
    border-color: var(--accent-primary);
}

.btn-primary::before {
    background: #e27a04;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-secondary);
}

.btn-secondary::before {
    background: #3472ac;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:hover i,
.btn:hover span {
    transform: translateX(2px);
}

.btn-primary:hover {
    border-color: #e27a04;
    color: #ffffff;
}

.btn-primary:hover i,
.btn-primary:hover span {
    color: #ffffff;
}

.btn-secondary:hover {
    border-color: #3472ac;
    color: #ffffff;
}

.btn-secondary:hover i,
.btn-secondary:hover span {
    color: #ffffff;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 8px;
    margin-top: 36px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border-primary);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.social-link i {
    font-size: 18px;
}

.social-link:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-secondary);
    transform: translateY(-2px);
}

/* Portfolio Section */
.portfolio {
    padding: 160px 0;
}

.section-title {
    font-size: clamp(32px, 6vw, 80px);
    text-align: left;
    margin-bottom: 80px;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Subtitle for sections */
.section-subtitle {
    text-align: left;
}

@media (max-width: 600px) {
    .section-subtitle {
        text-align: center !important;
    }
}

/* Bento Grid Styles */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
}

.bento-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-secondary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    cursor: pointer;
}

.bento-item::before {
    display: none; /* Completely disable pseudo-element */
}

.bento-item:hover {
    transform: translateY(-8px);
    border-color: var(--border-secondary);
    background: var(--bg-tertiary);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

/* Sugary card special gradient */
.sugary-card::before {
    display: none; /* Disable Sugary card fade effect too */
}

.sugary-card:hover::before {
    display: none; /* Disable Sugary card fade effect too */
}

.bento-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.bento-large {
    grid-column: 1;
    min-height: 380px;
    max-height: 800px;
    display: flex;
    overflow: visible;
}

.bento-large .bento-content {
    max-width: 60%;
    padding-right: 24px;
    flex: 1;
}

.bento-medium {
    min-height: 400px;
}

/* Bento Header */
.bento-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.bento-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 20px;
    border: 1px solid var(--border-primary);
}

.bento-meta {
    flex: 1;
}

.bento-type {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-accent);
    font-weight: 600;
}

.bento-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: pulse 2s infinite;
}

.status-dot.active {
    background: #22c55e;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.bento-status span {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Bento Title */
.bento-title-row {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    gap: 20px;
}

.bento-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.sugary-rating-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex-shrink: 0;
}

.sugary-rating-inline .rating-stars {
    font-size: 18px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 2px;
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
}

.sugary-rating-inline .rating-text {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

.bento-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}

.sugary-links-compact {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
    margin-top: auto;
}

.sugary-links-compact .app-store-btn,
.sugary-links-compact .google-play-btn {
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    min-width: auto;
    width: auto;
    justify-content: center;
    flex: none;
}

.bento-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Feature Tags */
.bento-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.feature-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-primary);
    border-radius: 20px;
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* App Store Buttons */
.bento-links {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.bento-links.compact {
    margin-bottom: 16px;
}

.app-store-btn, .google-play-btn, .visit-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 500;
    flex: 1;
    min-width: 0;
}

.app-store-btn.compact, .google-play-btn.compact {
    padding: 8px 16px;
    font-size: 14px;
    justify-content: center;
}

.app-store-btn:hover, .google-play-btn:hover, .visit-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-secondary);
    transform: translateY(-2px);
}

.app-store-btn i, .google-play-btn i, .visit-btn i {
    font-size: 20px;
}

.app-store-btn div, .google-play-btn div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.app-store-btn span, .google-play-btn span {
    font-size: 11px;
    color: var(--text-secondary);
}

.app-store-btn strong, .google-play-btn strong {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
}

/* Visit Button */
.visit-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-color: #3b82f6;
    justify-content: center;
}

.visit-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-color: #2563eb;
}

/* Bento Images - Better positioning */
.bento-image {
    position: absolute;
    top: 0;
    right: 0;
    transform: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    transition: filter 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

 .bento-large .bento-image {
    width: 200px;
    height: 400px;
    max-width: 35vw;
 }
 .bento-image:hover {
     filter: drop-shadow(0 0 32px #a78bfa) brightness(1.1) saturate(1.2);
     transform: scale(1.04) rotate(-2deg) translateY(-8px);
 }
@media (max-width: 900px) {
        .bento-image {
            right: 0;
            top: 0;
            width: 120px;
            height: 240px;
        }
        .bento-large .bento-image {
            width: 120px;
            height: 240px;
        }
}

@media (max-width: 600px) {
    .bento-image {
        display: none !important;
    }
}

.phone-mockup {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    padding: 6px;
    border: 1px solid var(--border-primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: stretch;
    justify-content: center;
    transform: rotate(18deg);
}

.phone-mockup img {
    width: auto;
    height: 100%;
    object-fit: contain;
    border-radius: 14px;
    opacity: 1;
}

.bento-preview {
    margin-top: 20px;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.bento-item:hover .bento-preview {
    opacity: 1;
}

.bento-preview img {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats */
.bento-stats {
    display: flex;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-primary);
    margin-top: auto;
}

.sugary-stats {
    margin-top: 24px;
    border-top: 1px solid var(--border-primary);
    padding-top: 20px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Desktop Grid Layout */
@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .bento-large {
        grid-column: 1 / -1;
        grid-row: 1;
        display: flex;
    }
    
    .bento-large .bento-content {
        max-width: 60%;
        padding-right: 0;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .bento-grid {
        gap: 20px;
    }
    
    .bento-content {
        padding: 32px 24px;
    }
    
    .bento-large {
        flex-direction: column;
        min-height: auto;
    }
    
    .bento-large .bento-content {
        max-width: 100%;
        padding-right: 24px;
        width: 100%;
    }
    
    .bento-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .sugary-rating-inline {
        align-items: flex-start;
        text-align: left;
    }
    
    .bento-image {
        width: 100%;
        max-width: none;
        justify-content: center;
        padding: 16px;
    }
    
    .sugary-links-compact {
        flex-direction: column;
        gap: 12px;
    }
    
    .sugary-links-compact .app-store-btn,
    .sugary-links-compact .google-play-btn {
        min-width: auto;
        width: 100%;
    }
    
    .bento-links {
        flex-direction: column;
        gap: 12px;
    }
    
    .app-store-btn, .google-play-btn {
        justify-content: center;
    }
    
    .bento-title {
        font-size: 24px;
    }
    
    .bento-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .bento-content {
        padding: 24px 20px;
    }
    
    .bento-header {
        margin-bottom: 20px;
    }
    
    .bento-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .bento-title {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .bento-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .bento-features {
        margin-bottom: 24px;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* Footer */
.footer {
    padding: 120px 0 60px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-left {
    flex: 1;
    max-width: 480px;
}

.footer-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.footer-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.footer-location {
    margin-top: 16px;
}

.footer-location-text {
    font-size: 14px;
    color: var(--text-accent);
    margin: 0;
    opacity: 0.8;
    font-weight: 400;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-footer {
    padding: 12px 24px;
    border: none;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-size: 13px;
    font-family: inherit;
    border: 1px solid transparent;
    opacity: 0.9;
    min-width: 160px;
    justify-content: center;
}

.btn-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.btn-footer:hover::before {
    opacity: 1;
}

.btn-footer:hover {
    opacity: 1;
    transform: scale(1.02);
    border-color: var(--border-secondary) !important;
}

.btn-footer i, .btn-footer span {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-footer:hover i,
.btn-footer:hover span {
    filter: brightness(1.1);
}

.btn-footer-primary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-footer-primary::before {
    background: #e27a04;
}

.btn-footer-primary:hover {
    border-color: #e27a04;
    color: #ffffff;
}

.btn-footer-secondary {
    background: transparent;
    color: var(--text-secondary);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-footer-secondary::before {
    background: #3472ac;
}

.btn-footer-secondary:hover {
    border-color: #3472ac;
    color: #ffffff;
}

.footer-social-links {
    display: flex;
    gap: 6px;
}

.footer-social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-accent);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    opacity: 0.8;
}

.footer-social-link i {
    font-size: 16px;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: var(--text-accent);
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    opacity: 0.8;
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
    .footer {
        padding: 80px 0 40px 0;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
        margin-bottom: 40px;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-right {
        align-items: center;
        gap: 20px;
    }
    
    .footer-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
    }
    
    .btn-footer {
        justify-content: center;
        width: 100%;
    }
    
    .footer-social-links {
        justify-content: center;
    }
}

/* Existing Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(32px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-image-fullscreen {
        width: 100%;
        height: 60vh;
        position: relative;
    }

    .profile-pic-fullscreen {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-content {
        width: 100%;
        min-height: 40vh;
        padding: 60px 20px;
        background: var(--bg-primary);
        text-align: center;
        align-items: center;
        justify-content: center;
        flex: none;
    }

    .hero-text {
        max-width: 100%;
        animation: slideInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .hero-name {
        font-size: clamp(36px, 10vw, 80px);
    }

    .typewriter {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .portfolio {
        padding: 120px 0;
    }

    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: clamp(28px, 8vw, 48px);
        margin-bottom: 48px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-image-fullscreen {
        height: 50vh;
    }

    .hero-content {
        min-height: 50vh;
        padding: 40px 16px;
    }

    .hero-name {
        font-size: clamp(32px, 12vw, 64px);
    }

    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }

    .social-link i {
        font-size: 16px;
    }
}
