/* ============================================
   CSS Variables & Color Palette
   ============================================ */
   :root {
    /* Primary Color Palette */
    --primary: #FF6B6B;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --dark: #1A1A2E;
    --darker: #16213E;
    --light: #F7F7F7;
    
    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --text-muted: #8E8E8E;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #44A08D 100%);
    --gradient-accent: linear-gradient(135deg, #FFE66D 0%, #FFAA00 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
    
    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    /* 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);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--text-secondary);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--text-primary);
}

/* ============================================
   Utility Classes
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-full {
    max-width: 100%;
    padding: 0;
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title {
    font-size: 3.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   Navbar
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.logo-dot {
    color: var(--primary);
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark);
    padding: 2rem;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
    animation: gradientMove 15s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
    animation: floatParticle 10s infinite ease-in-out;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-100px) translateX(50px) scale(1.5);
        opacity: 0.3;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin-top: 60px;
}

.avatar-wrapper {
    width: 180px;
    height: 180px;
    margin: 2.5rem auto 2.5rem;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.avatar-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--dark);
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: 4.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.tagline-item {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tagline-divider {
    color: var(--primary);
    font-size: 1.2rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--text-secondary);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.social-icon:hover {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.scroll-indicator {
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary);
    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; }
}

.scroll-indicator p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 8rem 0;
    background: var(--darker);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-paragraph {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-mono);
}

/* ============================================
   Education & Skills Section
   ============================================ */
.education {
    padding: 8rem 0;
    background: var(--darker);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.edu-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.edu-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    transition: var(--transition-slow);
    opacity: 0;
}

.edu-card:hover::before {
    opacity: 1;
    transform: translate(-25%, -25%);
}

.edu-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.2);
}

.edu-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.edu-icon i {
    font-size: 2rem;
    color: var(--text-primary);
}

.edu-degree {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.edu-major {
    font-size: 1rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.edu-institution {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.edu-institution i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.edu-grade {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    margin-top: 1.5rem;
}

.edu-grade i {
    color: var(--accent);
    font-size: 1rem;
}

.edu-grade span {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    font-family: var(--font-mono);
}

/* Skills Section */
.skills-section {
    margin-top: 6rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.skill-category {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: var(--transition);
}

.skill-category:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
    transform: translateY(-5px);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.skill-header i {
    font-size: 2rem;
    color: var(--secondary);
    width: 50px;
    height: 50px;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.skill-items {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.skill-name {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    font-family: var(--font-body);
}

.skill-bar {
    position: relative;
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: 10px;
    transition: width 1s ease-out;
    box-shadow: 0 0 15px rgba(78, 205, 196, 0.5);
}

.skill-percent {
    position: absolute;
    right: -45px;
    top: -5px;
    font-size: 0.85rem;
    color: var(--secondary);
    font-weight: 700;
    font-family: var(--font-mono);
}

/* ============================================
   Passions Section
   ============================================ */
.passions {
    padding: 8rem 0;
    background: var(--darker);
}

.passions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.passion-card {
    background: var(--dark);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.passion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.passion-card:hover::before {
    transform: scaleX(1);
}

.passion-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 107, 107, 0.3);
}

.passion-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.tech-card .passion-icon { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
}

.cinema-card .passion-icon { 
    background: var(--gradient-primary); 
}

.fitness-card .passion-icon { 
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); 
}

.passion-title {
    font-size: 1.85rem;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.passion-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.passion-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.passion-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.passion-link:hover {
    background: var(--primary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.passion-favorites {
    margin: 2rem 0;
}

.passion-favorites h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    font-family: var(--font-mono);
}

.passion-favorites ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.passion-favorites li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.passion-favorites i {
    color: var(--primary);
    font-size: 0.9rem;
}

.passion-quote {
    border-left: 3px solid var(--secondary);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--text-secondary);
    margin: 2rem 0;
    font-size: 1rem;
    line-height: 1.7;
}

.passion-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Fitness Gallery */
.fitness-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.fitness-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--darker);
}

.fitness-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.fitness-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.fitness-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1), rgba(245, 87, 108, 0.1));
    border: 2px dashed rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.fitness-placeholder i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.fitness-placeholder p {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 0 1rem;
}

.fitness-image:hover .fitness-placeholder {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.2), rgba(245, 87, 108, 0.2));
    border-color: var(--primary);
}

/* Fitness Stats */
.fitness-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fitness-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--darker);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.fitness-stat:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    flex-shrink: 0;
}

.stat-info h5 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   Work Section
   ============================================ */
.work {
    padding: 8rem 0;
    background: var(--darker);
}

.work-card {
    background: var(--dark);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

.work-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.work-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.work-company,
.work-period {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.work-company i,
.work-period i {
    color: var(--secondary);
}

.work-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 2rem 0;
}

.work-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    padding: 0.6rem 1.25rem;
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.work-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.highlight-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--dark);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.highlight-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: var(--text-primary);
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.highlight-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.work-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Connect Section
   ============================================ */
.connect {
    padding: 8rem 0;
    background: var(--dark);
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.connect-card {
    background: var(--darker);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.connect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.connect-card:hover::before {
    transform: scaleX(1);
}

.connect-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 50px rgba(255, 107, 107, 0.3);
}

.connect-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-primary);
}

.linkedin-card .connect-icon { background: linear-gradient(135deg, #0077B5 0%, #00A0DC 100%); }
.instagram-card .connect-icon { background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%); }
.letterboxd-card .connect-icon { background: linear-gradient(135deg, #FF8000 0%, #FF5000 100%); }
.music-card .connect-icon { background: linear-gradient(135deg, #FA243C 0%, #FC5C7D 100%); }
.github-card .connect-icon { background: linear-gradient(135deg, #24292E 0%, #4A4A4A 100%); }

.connect-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.connect-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.connect-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.connect-card:hover .connect-arrow {
    transform: translateX(5px);
}

.connect-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--darker);
    border-radius: 20px;
    border-left: 4px solid var(--primary);
}

.connect-quote blockquote p {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.connect-quote footer {
    color: var(--text-muted);
    font-size: 1rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--darker);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    align-items: center;
}

.footer-logo {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-center {
    text-align: center;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.heart {
    color: var(--primary);
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

.footer-right {
    text-align: right;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 3rem 0;
        gap: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tagline-divider {
        display: none;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
    }
    
    .photo-item.wide,
    .photo-item.tall {
        grid-column: auto;
        grid-row: auto;
    }
    
    .passions-grid {
        grid-template-columns: 1fr;
    }
    
    .fitness-gallery {
        grid-template-columns: 1fr;
    }
    
    .fitness-stats {
        grid-template-columns: 1fr;
    }
    
    .work-highlights {
        grid-template-columns: 1fr;
    }
    
    .connect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-right {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .avatar-wrapper {
        width: 140px;
        height: 140px;
    }
    
    .hero-description {
        font-size: 1.05rem;
    }
    
    .connect-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 0.85rem 2rem;
        font-size: 0.9rem;
    }
}
/* Enhanced Responsive Design for Education & Skills */
@media (max-width: 1200px) {
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (max-width: 1024px) {
    .education-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Tablet Improvements */
@media (max-width: 768px) {
    /* Hero Social Icons */
    .hero-social {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    /* Education & Skills */
    .education-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .edu-card {
        padding: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .skill-category {
        padding: 2rem;
    }
    
    .skill-percent {
        position: static;
        display: block;
        text-align: right;
        margin-top: 0.5rem;
    }
    
    .skill-bar {
        width: 100%;
    }
    
    .passion-card {
        padding: 2rem;
    }
    
    .work-card {
        padding: 2rem;
    }
    
    .work-title {
        font-size: 1.75rem;
    }
    
    .work-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .connect-grid {
        grid-template-columns: 1fr;
    }
    
    .connect-card {
        padding: 2rem;
    }
    
    .connect-quote {
        padding: 2rem;
    }
    
    .connect-quote blockquote p {
        font-size: 1.25rem;
    }
}

/* Mobile Improvements */
@media (max-width: 480px) {
    /* Sections Padding */
    .about, .education, .passions, .work, .connect {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .avatar-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    /* Education Cards */
    .edu-card {
        padding: 1.5rem;
    }
    
    .edu-degree {
        font-size: 1.25rem;
    }
    
    .edu-icon {
        width: 60px;
        height: 60px;
    }
    
    .edu-icon i {
        font-size: 1.75rem;
    }
    
    .edu-institution {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Skills */
    .skill-category {
        padding: 1.5rem;
    }
    
    .skill-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .skill-header h3 {
        font-size: 1.25rem;
    }
    
    .skill-name {
        font-size: 0.9rem;
    }
    
    /* Passion Cards */
    .passion-card {
        padding: 1.5rem;
    }
    
    .passion-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .passion-title {
        font-size: 1.5rem;
    }
    
    .passion-description {
        font-size: 0.95rem;
    }
    
    .stat-num {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Work Section */
    .work-card {
        padding: 1.5rem;
    }
    
    .work-title {
        font-size: 1.5rem;
    }
    
    .work-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .highlight-item {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
    }
    
    .highlight-content h4 {
        font-size: 1.1rem;
    }
    
    /* Connect Section */
    .connect-card {
        padding: 1.5rem;
    }
    
    .connect-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
    
    .connect-card h3 {
        font-size: 1.25rem;
    }
    
    .connect-quote {
        padding: 1.5rem;
    }
    
    .connect-quote blockquote p {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Footer */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .avatar-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .edu-card, .skill-category, .passion-card {
        padding: 1.25rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.8rem;
    }
}

/* Prevent horizontal overflow */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

/* Ensure images and media are responsive */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Better text wrapping */
.edu-institution span,
.work-description,
.passion-description,
.about-paragraph {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Fix long words in education section */
.edu-degree, .edu-major {
    word-wrap: break-word;
}

/* Ensure skill names don't overflow */
.skill-name {
    word-break: break-word;
}

/* Navigation fix for z-index */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.nav-menu {
    z-index: 999;
}

/* Smooth scrolling offset for fixed navbar */
html {
    scroll-padding-top: 100px;
}

/* Ensure particles don't cause overflow */
.particles {
    overflow: hidden;
    pointer-events: none;
}

/* Better mobile spacing */
@media (max-width: 768px) {
    section {
        overflow-x: hidden;
    }
    
    .nav-menu {
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }
}

/* Touch-friendly buttons on mobile */
@media (max-width: 480px) {
    .social-icon,
    .passion-link,
    .btn,
    .connect-card,
    .footer-social a {
        -webkit-tap-highlight-color: rgba(255, 107, 107, 0.3);
        touch-action: manipulation;
    }
    
    /* Larger touch targets */
    .nav-link {
        padding: 1rem;
        display: block;
    }
}

/* Enhanced Hamburger Menu Styles */
.hamburger {
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 5px;
}

.hamburger span {
    display: block;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px) !important;
}

.hamburger.active span:nth-child(2) {
    opacity: 0 !important;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px) !important;
}

/* Ensure nav menu is properly layered */
@media (max-width: 768px) {
    .nav-menu {
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    /* Ensure links are clickable */
    .nav-link {
        pointer-events: auto;
        display: block;
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* ============================================
   Contact Form Styles
   ============================================ */
.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: var(--darker);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
}

.form-status.success {
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid rgba(78, 205, 196, 0.3);
    color: var(--secondary);
}

.form-status.error {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: var(--primary);
}

/* Button already styled in main CSS */
.contact-form .btn {
    align-self: center;
    min-width: 200px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* Enhanced Hamburger Menu Styles */
.hamburger {
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 5px;
}

.hamburger span {
    display: block;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px) !important;
}

.hamburger.active span:nth-child(2) {
    opacity: 0 !important;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px) !important;
}

/* Ensure nav menu is properly layered */
@media (max-width: 768px) {
    .nav-menu {
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    /* Ensure links are clickable */
    .nav-link {
        pointer-events: auto;
        display: block;
        width: 100%;
        padding: 1rem 2rem;
    }
}

/* ============================================
   Contact Form Styles
   ============================================ */
.contact-form-container {
    max-width: 700px;
    margin: 0 auto 4rem;
    background: var(--darker);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-status {
    display: none;
    margin-top: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1rem;
    text-align: center;
}

.status-success {
    background: rgba(78, 205, 196, 0.1);
    border: 2px solid rgba(78, 205, 196, 0.3);
    color: var(--secondary);
}

.status-success i {
    margin-right: 0.5rem;
}

.status-error {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
    color: var(--primary);
}

.status-error i {
    margin-right: 0.5rem;
}

/* Responsive Contact Form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
}

/* ============================================
   Enhanced Contact Form Modal Styles
   ============================================ */

/* Modal Overlay */
.contact-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-modal.active {
    opacity: 1;
    visibility: visible;
}

/* Form Wrapper with Animation */
.contact-form-wrapper {
    max-width: 700px;
    width: 90%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
    border-radius: 25px;
    border: 2px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    padding: 0;
    position: relative;
    transform: scale(0.9) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.contact-form-modal.active .contact-form-wrapper {
    transform: scale(1) translateY(0);
}

/* Decorative Gradient Border Effect */
.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #FFE66D, #FF6B6B);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Form Header */
.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-title {
    font-size: 1.75rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0;
}

.form-title i {
    color: var(--primary);
    font-size: 1.5rem;
}

.close-form-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-form-btn:hover {
    background: rgba(255, 107, 107, 0.2);
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(90deg);
}

/* Form Styles */
.contact-form {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group label {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
}

.form-group label i {
    color: var(--secondary);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Send Button */
.btn-send {
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.btn-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Status */
.form-status {
    margin-top: 1rem;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.form-status.success {
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(78, 205, 196, 0.05));
    border: 2px solid rgba(78, 205, 196, 0.4);
    color: var(--secondary);
}

.form-status.error {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 107, 107, 0.05));
    border: 2px solid rgba(255, 107, 107, 0.4);
    color: var(--primary);
}

/* Email Card - Make it clickable */
.email-card {
    cursor: pointer !important;
    transition: var(--transition);
}

.email-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-wrapper {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .form-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .close-form-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .form-header {
        padding: 1.5rem 1.25rem 0.75rem;
    }
    
    .form-title {
        font-size: 1.25rem;
    }
    
    .form-title i {
        font-size: 1.25rem;
    }
    
    .contact-form {
        padding: 1.5rem 1.25rem;
        gap: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .btn-send {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Smooth Scrollbar for Modal */
.contact-form-wrapper::-webkit-scrollbar {
    width: 8px;
}

.contact-form-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.contact-form-wrapper::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

.contact-form-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}
/*aa  */

