/* ============================================
   GENEL AYARLAR
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --primary-dark: #e85a2a;
    --primary-light: #ff8c61;
    --secondary-color: #000000;
    --bg-dark: #0a0a0a;
    --bg-dark-secondary: #1a1a1a;
    --bg-dark-tertiary: #2a2a2a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --glow-orange: rgba(255, 107, 53, 0.5);
    --glow-orange-strong: rgba(255, 107, 53, 0.8);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logo a i {
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--glow-orange));
}

.logo a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--glow-orange);
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--glow-orange);
    transition: var(--transition);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-orange);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
    box-shadow: 0 0 5px var(--glow-orange);
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: var(--text-light);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--glow-orange);
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.glow-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-weight: 300;
}

.name-glow {
    font-size: 5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--glow-orange-strong);
    margin-bottom: 1rem;
    animation: glow-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 20px var(--glow-orange));
}

@keyframes glow-pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px var(--glow-orange));
    }
    50% {
        filter: drop-shadow(0 0 40px var(--glow-orange-strong));
    }
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

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

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-light);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
    filter: drop-shadow(0 0 15px var(--glow-orange));
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.8);
    transform: translateY(-3px);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    filter: blur(40px);
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-light), transparent);
    top: 60%;
    right: 10%;
    animation-delay: -7s;
    filter: blur(30px);
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    bottom: 10%;
    left: 50%;
    animation-delay: -14s;
    filter: blur(35px);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */
.about-preview {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.about-preview-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-preview-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ============================================
   PROJECTS PREVIEW SECTION
   ============================================ */
.projects-preview {
    padding: 5rem 0;
    background: var(--bg-dark-secondary);
}

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

.project-preview-card {
    background: var(--bg-dark-tertiary);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.project-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.project-preview-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px var(--glow-orange));
}

.project-preview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.project-preview-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ============================================
   GALLERY PREVIEW SECTION
   ============================================ */
.gallery-preview {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

.gallery-preview-item {
    text-align: center;
}

.gallery-preview-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-dark-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--glow-orange));
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.gallery-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-preview-item:hover .gallery-preview-placeholder {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
}

.gallery-preview-item p {
    color: var(--text-gray);
    font-weight: 500;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
    padding: 5rem 0;
    background: var(--bg-dark-secondary);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    box-shadow: 0 0 20px var(--glow-orange);
}

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

.feature-card {
    background: var(--bg-dark-tertiary);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px var(--glow-orange));
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 0 25px var(--glow-orange-strong));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-dark-secondary);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 15px var(--glow-orange));
}

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

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-dark-secondary), var(--bg-dark));
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1), transparent);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px var(--glow-orange));
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.glow-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0.5;
    filter: blur(20px);
    animation: glow-pulse 3s ease-in-out infinite;
}

.placeholder-avatar {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--bg-dark-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px var(--glow-orange);
    z-index: 1;
}

.placeholder-avatar i {
    font-size: 5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--glow-orange));
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--glow-orange));
}

.about-text .lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.profile-photo {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 30px var(--glow-orange);
    z-index: 1;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--text-gray);
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.1);
}

code {
    background: var(--bg-dark-tertiary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

pre {
    background: var(--bg-dark-tertiary);
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin: 1.5rem 0;
}

pre code {
    background: transparent;
    padding: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

abbr {
    text-decoration: underline;
    text-decoration-style: dotted;
    cursor: help;
}

.education-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.education-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-dark-secondary);
    border-radius: 10px;
    overflow: hidden;
}

.education-table thead {
    background: var(--bg-dark-tertiary);
}

.education-table th {
    padding: 1rem;
    text-align: left;
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
}

.education-table td {
    padding: 1rem;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.education-table tbody tr:hover {
    background: var(--bg-dark-tertiary);
    transition: var(--transition);
}

.interests-section {
    padding: 5rem 0;
    background: var(--bg-dark-secondary);
}

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

.interests-list {
    background: var(--bg-dark-tertiary);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.interests-list h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px var(--glow-orange));
}

.interests-list ul,
.interests-list ol {
    list-style: none;
    padding-left: 0;
}

.interests-list ul li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.interests-list ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.interests-list ol li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
    counter-increment: item;
    position: relative;
    padding-left: 2rem;
}

.interests-list ol {
    counter-reset: item;
}

.interests-list ol li::before {
    content: counter(item) '.';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ============================================
   SKILLS SECTION
   ============================================ */
.skills-section {
    padding: 5rem 0;
    background: var(--bg-dark-secondary);
}

.skills-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.skill-item {
    background: var(--bg-dark-tertiary);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.skill-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.skill-name {
    color: var(--text-light);
    font-weight: 600;
}

.skill-percent {
    color: var(--primary-color);
    font-weight: bold;
}

.skill-bar {
    height: 10px;
    background: var(--bg-dark);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    width: 0;
    transition: width 1s ease;
    box-shadow: 0 0 10px var(--glow-orange);
}

/* ============================================
   TIMELINE
   ============================================ */
.education-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    transform: translateX(-50%);
    box-shadow: 0 0 10px var(--glow-orange);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-dark-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 20px var(--glow-orange);
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 5px var(--glow-orange));
}

.timeline-content {
    flex: 1;
    background: var(--bg-dark-secondary);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 5px var(--glow-orange));
}

.timeline-date {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: var(--bg-dark-secondary);
    border: 2px solid rgba(255, 107, 53, 0.3);
    color: var(--text-light);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-orange);
    transform: translateY(-3px);
}

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

.project-card {
    background: var(--bg-dark-secondary);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-dark-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--glow-orange));
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.project-link {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--glow-orange);
}

.project-link:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px var(--glow-orange-strong);
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-info p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.tag {
    padding: 0.3rem 1rem;
    background: rgba(255, 107, 53, 0.2);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-dark-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--glow-orange));
}

.gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    z-index: 1;
    display: block;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    text-align: center;
    padding: 2rem;
}

.gallery-content h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.gallery-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.gallery-btn {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0 20px var(--glow-orange);
}

.gallery-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px var(--glow-orange-strong);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-dark-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--glow-orange));
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-items {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-dark-tertiary);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
    transform: translateX(10px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--glow-orange);
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--text-light);
    font-size: 1.2rem;
}

.contact-details h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: var(--text-gray);
}

.social-contact h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: var(--bg-dark-tertiary);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px var(--glow-orange);
    transform: translateY(-5px);
}

.contact-form-wrapper {
    background: var(--bg-dark-tertiary);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: var(--bg-dark);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.btn-submit {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.blog-articles {
    max-width: 900px;
    margin: 0 auto;
}

.blog-article {
    background: var(--bg-dark-secondary);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: var(--transition);
}

.blog-article:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.blog-article-header {
    margin-bottom: 2rem;
}

.blog-article-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

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

.blog-date i,
.blog-category i {
    color: var(--primary-color);
}

.blog-article-title {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-article-content {
    margin-bottom: 2rem;
}

.blog-article-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.blog-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.blog-article:hover .blog-img {
    transform: scale(1.02);
}

.blog-article-text {
    color: var(--text-gray);
    line-height: 1.8;
}

.blog-article-text h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    filter: drop-shadow(0 0 5px var(--glow-orange));
}

.blog-article-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.blog-article-text blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-light);
    background: var(--bg-dark-tertiary);
    padding: 1.5rem;
    border-radius: 5px;
}

.blog-article-text pre {
    background: var(--bg-dark-tertiary);
    padding: 1.5rem;
    border-radius: 10px;
    overflow-x: auto;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin: 2rem 0;
}

.blog-article-text pre code {
    background: transparent;
    padding: 0;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.blog-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px var(--glow-orange);
}

.blog-author-info h4 {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.blog-author-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-share span {
    color: var(--text-gray);
}

.blog-share-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-dark-tertiary);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.blog-share-btn:hover {
    background: var(--primary-color);
    color: var(--text-light);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--glow-orange);
    transform: translateY(-3px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark-secondary);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 5px var(--glow-orange));
}

.footer-section p,
.footer-section li {
    color: var(--text-gray);
    line-height: 2;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--glow-orange);
}

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

.footer-section .social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-dark-tertiary);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-section .social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--glow-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    color: var(--text-gray);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .language-switcher {
        margin-left: 0.5rem;
        order: -1;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .navbar .container {
        flex-wrap: wrap;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

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

    .name-glow {
        font-size: 3rem;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

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

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 70px;
    }

    .timeline-icon {
        position: absolute;
        left: 0;
        margin: 0;
    }

    .projects-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-article {
        padding: 2rem;
    }
    
    .blog-article-title {
        font-size: 2rem;
    }
    
    .blog-article-footer {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

    .page-title {
        font-size: 2rem;
    }
}

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

    .name-glow {
        font-size: 2.5rem;
    }

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

