/* ===================================
   PREMIUM PORTFOLIO STYLESHEET
   Designer: Aryan Parmar
   Theme: Refined Dark Editorial with Premium Effects
   Focus: Flutter Developer | UI/UX Designer
   =================================== */

/* ===================================
   SPLASH SCREEN STYLES
   =================================== */

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0b0d10 0%, #1a0e1f 50%, #0b0d10 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    overflow: hidden;
}

.splash-screen.fade-out {
    animation: splashFadeOut 1.2s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

@keyframes splashFadeOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
    100% {
        opacity: 0;
        transform: scale(1.1);
        pointer-events: none;
    }
}

.splash-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

.splash-profile-container {
    margin-bottom: 3rem;
    animation: profileSlideUp 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.splash-profile-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.splash-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(255, 122, 24, 0.3);
}

.ring-1 {
    width: 220px;
    height: 220px;
    animation: ringPulse 3s ease-in-out infinite;
}

.ring-2 {
    width: 260px;
    height: 260px;
    animation: ringPulse 3s ease-in-out infinite 0.5s;
}

.ring-3 {
    width: 300px;
    height: 300px;
    animation: ringPulse 3s ease-in-out infinite 1s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

.splash-profile-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-primary);
    box-shadow: 
        0 0 40px rgba(255, 122, 24, 0.5),
        0 20px 60px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 1;
    animation: profileFloat 3s ease-in-out infinite;
}

@keyframes profileFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.splash-text {
    margin-bottom: 3rem;
}

.splash-name {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.2rem;
}

.splash-letter {
    display: inline-block;
    animation: letterBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(255, 122, 24, 0.5);
}

.splash-space {
    width: 1rem;
}

.splash-letter:nth-child(1) { animation-delay: 0.1s; }
.splash-letter:nth-child(2) { animation-delay: 0.15s; }
.splash-letter:nth-child(3) { animation-delay: 0.2s; }
.splash-letter:nth-child(4) { animation-delay: 0.25s; }
.splash-letter:nth-child(5) { animation-delay: 0.3s; }
.splash-letter:nth-child(7) { animation-delay: 0.4s; }
.splash-letter:nth-child(8) { animation-delay: 0.45s; }
.splash-letter:nth-child(9) { animation-delay: 0.5s; }
.splash-letter:nth-child(10) { animation-delay: 0.55s; }
.splash-letter:nth-child(11) { animation-delay: 0.6s; }
.splash-letter:nth-child(12) { animation-delay: 0.65s; }

@keyframes letterBounce {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.splash-title {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--accent-primary);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.splash-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1s backwards;
}

.badge {
    background: rgba(255, 122, 24, 0.1);
    border: 1px solid rgba(255, 122, 24, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent-soft);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.splash-cta {
    animation: fadeInUp 0.8s ease-out 1.2s backwards;
}

.tap-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.scroll-indicator {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-primary);
    border-radius: 25px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(20px);
        opacity: 0.5;
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.particle:nth-child(3) {
    left: 40%;
    animation-delay: 4s;
    animation-duration: 18s;
}

.particle:nth-child(4) {
    left: 55%;
    animation-delay: 1s;
    animation-duration: 14s;
}

.particle:nth-child(5) {
    left: 70%;
    animation-delay: 3s;
    animation-duration: 16s;
}

.particle:nth-child(6) {
    left: 85%;
    animation-delay: 5s;
    animation-duration: 13s;
}

.particle:nth-child(7) {
    left: 15%;
    animation-delay: 6s;
    animation-duration: 17s;
}

.particle:nth-child(8) {
    left: 90%;
    animation-delay: 4.5s;
    animation-duration: 19s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

.portfolio-wrapper {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.portfolio-wrapper.active {
    opacity: 1;
    visibility: visible;
}

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

/* Custom Cursor */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease, opacity 0.15s ease;
    opacity: 0.5;
}

.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
}

.custom-cursor.cursor-hover {
    transform: scale(1.5);
    opacity: 1;
}

.custom-cursor-dot.cursor-hover {
    transform: translate(-50%, -50%) scale(1.5);
}

/* Responsive for Splash */
@media (max-width: 768px) {
    .custom-cursor,
    .custom-cursor-dot {
        display: none;
    }
    
    .splash-profile-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .splash-profile-img {
        width: 150px;
        height: 150px;
    }
    
    .ring-1 {
        width: 170px;
        height: 170px;
    }
    
    .ring-2 {
        width: 200px;
        height: 200px;
    }
    
    .ring-3 {
        width: 230px;
        height: 230px;
    }
    
    .splash-badges {
        gap: 0.5rem;
    }
    
    .badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .splash-content {
        padding: 1rem;
    }
    
    .splash-profile-container {
        margin-bottom: 2rem;
    }
    
    .splash-text {
        margin-bottom: 2rem;
    }
}

/* ===================================
   CSS VARIABLES
   =================================== */
:root {
    /* Base / Background Colors */
    --bg-primary: #0b0d10;
    --bg-secondary: #14161a;
    --bg-tertiary: #1c1f24;
    
    /* Accent / Highlight Colors */
    --accent-primary: #ff7a18;
    --accent-soft: #ff9f45;
    
    /* Text Colors */
    --text-primary: #eaeaea;
    --text-secondary: #b0b3b8;
    --text-muted: #7a7d81;
    
    /* Border Colors */
    --border-light: rgba(255,255,255,0.08);
    --border-accent: rgba(255,122,24,0.35);
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    mix-blend-mode: overlay;
}

/* ===================================
   LAYOUT
   =================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 8rem 0;
    position: relative;
}

/* ===================================
   NAVIGATION
   =================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 13, 16, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    padding: 1.5rem 0;
    z-index: 100;
    animation: slideDown 0.6s ease-out;
}

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

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,122,24,0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
    }
    50% { 
        transform: translate(-50px, -80px) scale(1.1); 
    }
}





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

.eyebrow {
    color: var(--accent-primary);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: slideInLeft 0.6s ease-out;
}

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

h1 {
    font-family: 'Syne', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent-primary);
    -webkit-text-fill-color: var(--accent-primary);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat {
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--bg-primary);
    box-shadow: 0 0 30px rgba(255,122,24,0.3);
}

.btn-primary:hover {
    background: var(--accent-soft);
    box-shadow: 0 0 40px rgba(255,122,24,0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ===================================
   HERO IMAGE SECTION - PROFILE PHOTO
   =================================== */
.hero-image-container {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    background: var(--bg-secondary);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-soft));
}

.profile-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.profile-frame {
    position: relative;
    width: 300px;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    border: 2px solid var(--border-accent);
    box-shadow: 0 20px 60px rgba(255,122,24,0.2);
    animation: profileEnter 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: imgZoom 0.6s ease-out;
}

@keyframes imgZoom {
    from {
        transform: scale(1.05);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.profile-glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at 30% 30%, rgba(255,122,24,0.2), transparent 70%);
    border-radius: 12px;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Floating Cards */
.floating-cards {
    position: relative;
    height: 120px;
}

.floating-card {
    position: absolute;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.floating-card:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,122,24,0.2);
}

.card-icon {
    font-size: 1.3rem;
}

.card-1 {
    left: -20px;
    top: 10px;
    animation: float1 4s ease-in-out infinite;
}

.card-2 {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    animation: float2 5s ease-in-out infinite;
}

.card-3 {
    left: 20px;
    bottom: 10px;
    animation: float3 4.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-15px) translateX(10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(-50%) translateX(0px); }
    50% { transform: translateY(-50%) translateX(15px); }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(15px) translateX(-10px); }
}

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

.section-eyebrow {
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

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

/* ===================================
   ABOUT SECTION
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.about-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,122,24,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.about-card:hover .about-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255,122,24,0.2);
}

.about-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-card li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.about-card li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.about-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

/* ===================================
   SKILLS SECTION
   =================================== */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.skill-category {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.skill-category:hover::before {
    transform: scaleX(1);
}

.skill-category:hover {
    border-color: var(--border-accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.skill-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,122,24,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
    transition: all 0.3s ease;
}

.skill-category:hover .skill-icon {
    transform: scale(1.15) rotate(-5deg);
    background: rgba(255,122,24,0.2);
}

.skill-category h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.skill-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skill-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.skill-list li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.skill-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

/* ===================================
   PROJECTS SECTION
   =================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.project-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-soft));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.project-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, rgba(255,122,24,0.1), rgba(255,122,24,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.project-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255,122,24,0.15), transparent 60%);
    pointer-events: none;
}

.project-card:hover .project-image {
    background: linear-gradient(135deg, rgba(255,122,24,0.15), rgba(255,122,24,0.08));
}

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

.project-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.project-type {
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.project-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.tag {
    padding: 0.4rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(255,122,24,0.1);
    transform: translateY(-2px);
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(255,122,24,0.1);
    transform: translateY(-2px);
}

.project-links {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.project-links .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
}

.project-links .btn-secondary {
    border: 1.5px solid var(--accent-primary);
    color: var(--accent-primary);
    background: transparent;
    font-weight: 600;
}

.project-links .btn-secondary:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
    background: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,122,24,0.3);
}

/* ===================================
   FOCUS SECTION
   =================================== */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.focus-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-primary), transparent);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

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

.focus-card:hover {
    border-color: var(--border-accent);
    transform: translateX(8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.focus-number {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,122,24,0.2);
    line-height: 1;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.focus-card:hover .focus-number {
    color: rgba(255,122,24,0.4);
    transform: scale(1.1);
}

.focus-card h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.focus-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.looking-for {
    background: var(--bg-secondary);
    border: 2px solid var(--border-accent);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    animation: slideUp 0.8s ease-out;
}

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

.looking-for h3 {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.looking-for > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.looking-for strong {
    color: var(--accent-primary);
}

.looking-for ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.looking-for li {
    color: var(--text-secondary);
    font-size: 1rem;
    padding-left: 2rem;
    position: relative;
    text-align: left;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.looking-for li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.looking-for li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.2rem;
}



/* ===================================
   FOOTER
   =================================== */
footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
    padding: 3rem 0;
    text-align: center;
}

footer p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    list-style: none;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-up:nth-child(1) { animation-delay: 0.1s; }
.fade-in-up:nth-child(2) { animation-delay: 0.2s; }
.fade-in-up:nth-child(3) { animation-delay: 0.3s; }
.fade-in-up:nth-child(4) { animation-delay: 0.4s; }
.fade-in-up:nth-child(5) { animation-delay: 0.5s; }
.fade-in-up:nth-child(6) { animation-delay: 0.6s; }

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    h1 {
        font-size: 3.5rem;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

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

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

    .profile-frame {
        width: 250px;
        height: 300px;
    }

    .floating-card {
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .focus-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

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

    .nav-links {
        display: none;
    }

    .hero {
        padding-top: 70px;
    }

    .profile-frame {
        width: 200px;
        height: 240px;
    }

    .floating-card {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .about-card,
    .skill-category,
    .project-card,
    .focus-card {
        padding: 1.5rem;
    }

    .about-card h3,
    .skill-category h3,
    .project-title,
    .focus-card h3 {
        font-size: 1.2rem;
    }

    .focus-number {
        font-size: 2.5rem;
    }

    .looking-for {
        padding: 2rem;
    }

    .looking-for h3 {
        font-size: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .eyebrow {
        font-size: 0.8rem;
    }
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-soft);
}

/* ===================================
   CONTACT SECTION - ENHANCED
   =================================== */
#contact {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,122,24,0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Creative Contact Grid */
.contact-grid-creative {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.contact-card-creative {
    position: relative;
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateY(0);
}

/* Shine Effect */
.card-shine {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.contact-card-creative:hover {
    border-color: var(--accent-primary);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255,122,24,0.25), 
                0 0 40px rgba(255,122,24,0.1);
}

.contact-card-creative::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,122,24,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-card-creative:hover::before {
    opacity: 1;
}

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

.contact-icon-large {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-card-creative:hover .contact-icon-large {
    transform: scale(1.15) rotate(-10deg);
    filter: drop-shadow(0 10px 20px rgba(255,122,24,0.3));
}

.contact-card-creative h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    margin: 1rem 0 0.5rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.contact-card-creative:hover h3 {
    color: var(--accent-primary);
}

.contact-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.contact-btn {
    padding: 0.75rem 1.8rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-soft));
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,122,24,0.2);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,122,24,0.4);
}

.contact-btn:active::before {
    width: 300px;
    height: 300px;
}

/* Decorative Dots */
.card-decoration {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.contact-card-creative:hover .card-decoration {
    opacity: 0.7;
}

.deco-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: dotFloat 2s ease-in-out infinite;
}

.deco-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.deco-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Quick Contact Links */
.quick-contact {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px dashed var(--border-light);
}

.quick-contact-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.social-links-enhanced {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-light);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.social-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-primary);
    z-index: -1;
    transition: left 0.3s ease;
}

.social-link-btn:hover {
    border-color: var(--accent-primary);
    color: var(--bg-primary);
}

.social-link-btn:hover::before {
    left: 0;
}

.social-link-btn .icon {
    font-size: 1.3rem;
}

.email-btn {
    --accent-color: #ff7a18;
}

.phone-btn {
    --accent-color: #00d084;
}

.linkedin-btn {
    --accent-color: #0a66c2;
}

.github-btn {
    --accent-color: #ffffff;
}

/* ===================================
   CONTACT MODAL - POP-UP
   =================================== */

.contact-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1;
    animation: backdropFade 0.3s ease-out;
}

@keyframes backdropFade {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(4px);
    }
}

.modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-card {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-accent);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5),
                0 0 100px rgba(255, 122, 24, 0.2);
    animation: modalSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: var(--bg-primary);
    transform: rotate(90deg);
}

/* Modal Header */
.modal-header {
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    background: linear-gradient(135deg, rgba(255,122,24,0.08) 0%, transparent 100%);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: iconBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.modal-title {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

/* Modal Body */
.modal-body {
    padding: 3rem 2.5rem;
}

.contact-info-display {
    background: var(--bg-primary);
    border: 2px dashed var(--border-accent);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.info-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.copy-container {
    display: flex;
    gap: 0.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 0.5rem;
}

.copy-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    outline: none;
}

.copy-btn {
    padding: 0.75rem 1.5rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.copy-btn:hover {
    background: var(--accent-soft);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,122,24,0.3);
}

.copy-btn.copied {
    background: #00d084;
}

.copy-btn.copied::after {
    content: '✓ Copied!';
}

/* Modal Action */
.modal-action {
    background: linear-gradient(135deg, rgba(255,122,24,0.08) 0%, transparent 100%);
    border: 1px solid var(--border-accent);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.action-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.action-link {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-soft));
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255,122,24,0.2);
}

.action-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255,122,24,0.4);
}

/* Modal Footer */
.modal-footer {
    padding: 1.5rem 2.5rem;
    background: linear-gradient(90deg, transparent, rgba(255,122,24,0.1), transparent);
    border-top: 1px solid var(--border-light);
    text-align: center;
}

.footer-message {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    font-style: italic;
}

/* ===================================
   RESPONSIVE CONTACT
   =================================== */

@media (max-width: 1024px) {
    .contact-grid-creative {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-card-creative {
        padding: 2rem 1.5rem;
    }

    .contact-icon-large {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-grid-creative {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-links-enhanced {
        gap: 1rem;
    }

    .social-link-btn {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }

    .modal-card {
        width: 95%;
        margin: 0 2.5%;
    }

    .modal-header {
        padding: 2rem 2rem 1.5rem;
    }

    .modal-icon {
        font-size: 3rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 2rem;
    }

    .modal-footer {
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .contact-grid-creative {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-card-creative {
        padding: 1.5rem 1rem;
    }

    .contact-icon-large {
        font-size: 2.5rem;
    }

    .contact-card-creative h3 {
        font-size: 1.2rem;
    }

    .contact-btn {
        padding: 0.6rem 1.4rem;
        font-size: 0.85rem;
    }

    .social-links-enhanced {
        flex-direction: column;
        gap: 0.75rem;
    }

    .social-link-btn {
        width: 100%;
    }

    .modal-card {
        max-width: 90vw;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .copy-container {
        flex-direction: column;
    }

    .copy-input {
        font-size: 1rem;
    }

    .copy-btn {
        width: 100%;
    }
}

/* ===================================
   HERO CONTENT LAYOUT FIX
   =================================== */
.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text {
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 100%;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
}

/* ===================================
   PROFILE SPLASH SECTION - CREATIVE
   =================================== */
.profile-splash {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.profile-splash::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,122,24,0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.profile-splash::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,122,24,0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

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

.splash-text {
    padding-right: 2rem;
}

.splash-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--text-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.splash-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.splash-profile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.profile-splash-frame {
    position: relative;
    width: 320px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    animation: frameFloat 4s ease-in-out infinite;
}

@keyframes frameFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

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

.splash-glow {
    position: absolute;
    inset: -20px;
    background: conic-gradient(
        from 0deg,
        rgba(255,122,24,0.3),
        rgba(255,122,24,0.1),
        rgba(255,122,24,0.3)
    );
    border-radius: 20px;
    animation: glowSpin 8s linear infinite;
    z-index: -1;
}

@keyframes glowSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.splash-border {
    position: absolute;
    inset: 0;
    border: 3px solid;
    border-image: linear-gradient(135deg, var(--accent-primary), var(--accent-soft)) 1;
    border-radius: 20px;
    pointer-events: none;
}

/* Splash Badges */
.splash-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.badge {
    background: linear-gradient(135deg, var(--bg-tertiary), var(--bg-secondary));
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    animation: badgeSlide 0.6s ease-out backwards;
}

.badge:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,122,24,0.2);
}

.badge-1 { animation-delay: 0.1s; }
.badge-2 { animation-delay: 0.2s; }
.badge-3 { animation-delay: 0.3s; }
.badge-4 { animation-delay: 0.4s; }

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

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.badge:hover .badge-text {
    color: var(--text-primary);
}

/* ===================================
   RESPONSIVE FIXES
   =================================== */
@media (max-width: 1024px) {
    .splash-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .splash-text {
        padding-right: 0;
        text-align: center;
    }

    .splash-text h2 {
        font-size: 2.4rem;
    }

    .profile-splash {
        padding: 6rem 0;
    }
}

@media (max-width: 768px) {
    .profile-splash {
        padding: 4rem 0;
    }

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

    .splash-text h2 {
        font-size: 2rem;
    }

    .splash-text p {
        font-size: 1rem;
    }

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

    .splash-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .badge {
        padding: 1rem 1.2rem;
    }

    .badge-icon {
        font-size: 1.3rem;
    }

    .badge-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .profile-splash {
        padding: 3rem 0;
    }

    .splash-content {
        gap: 1.5rem;
    }

    .splash-text h2 {
        font-size: 1.6rem;
    }

    .splash-text p {
        font-size: 0.95rem;
    }

    .profile-splash-frame {
        width: 240px;
        height: 300px;
    }

    .splash-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .badge {
        padding: 0.75rem 1rem;
        flex-direction: column;
        text-align: center;
    }

    .badge-icon {
        font-size: 1.2rem;
    }

    .badge-text {
        font-size: 0.8rem;
    }
}

/* Hero Responsive Fixes */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .profile-frame {
        width: 250px;
        height: 300px;
    }

    .floating-cards {
        height: 80px;
    }

    .floating-card {
        font-size: 0.75rem;
        padding: 0.5rem 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .profile-frame {
        width: 200px;
        height: 240px;
    }

    .floating-cards {
        height: 70px;
    }

    .floating-card {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Contact Grid Responsive */
@media (max-width: 768px) {
    .contact-grid-creative {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .contact-grid-creative {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .contact-card-creative {
        padding: 1.5rem 1rem !important;
    }

    .contact-icon-large {
        font-size: 2.5rem !important;
    }
}

/* Skills Grid Responsive */
@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .skills-grid {
        grid-template-columns: 1fr !important;
    }

    .skill-category {
        padding: 1.5rem !important;
    }
}

/* About Grid Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .about-grid {
        grid-template-columns: 1fr !important;
    }

    .about-card {
        padding: 1.5rem !important;
    }
}

/* Projects Grid Responsive */
@media (max-width: 768px) {
    .projects-grid {
        gap: 2rem;
    }

    .project-card {
        border-radius: 10px;
    }

    .project-image {
        height: 220px;
    }

    .project-content {
        padding: 1.5rem;
    }

    .project-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .projects-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .project-card {
        border-radius: 8px;
    }

    .project-image {
        height: 200px;
    }

    .project-content {
        padding: 1.2rem;
    }

    .project-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .project-type {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .project-description {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .project-tags {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .project-links .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Focus Grid Responsive */
@media (max-width: 480px) {
    .focus-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .focus-card {
        padding: 1.5rem !important;
    }

    .focus-number {
        font-size: 2rem !important;
    }
}



.project-image {
    width: 100%;
    height: 220px; /* slightly bigger */
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* IMPORTANT */
}