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

:root {
    --primary-color: #ffa500;
    --primary-dark: #ff8c00;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --bg-dark: #1a1a1a;
    --bg-darker: #0f0f0f;
    --bg-card: #252525;
    --border-color: #333333;
}

html {
    scroll-behavior: smooth;
}

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}
    
    @media (max-width: 768px) {
        .navbar {
            padding: 15px 0;
        }
    }
    
    @media (max-width: 480px) {
        .navbar {
            padding: 12px 0;
        }
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 20px;
    width: 100%;
}

@media (min-width: 769px) {
    .nav-wrapper {
        gap: 40px;
        flex-wrap: nowrap;
    }
    
    /* Desktop: Ensure hamburger is completely hidden */
    .nav-wrapper .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
}

.logo {
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-decoration: none;
    transition: color 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .logo {
        font-size: 24px;
    }
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

@media (min-width: 769px) {
    .nav-menu {
        flex: 1;
        justify-content: center;
    }
}

/* Mobile Menu Toggle Button - Default: Hidden */
.mobile-menu-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    flex-direction: column;
    justify-content: space-around;
    width: 0 !important;
    height: 0 !important;
    min-width: 0 !important;
    min-height: 0 !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    z-index: -1 !important;
    order: 3;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    pointer-events: none !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
}

/* Hide any duplicate mobile menu buttons */
.mobile-menu-btn,
button.mobile-menu-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    pointer-events: none !important;
}

.mobile-menu-toggle span,
.mobile-menu-toggle span:nth-child(1),
.mobile-menu-toggle span:nth-child(2),
.mobile-menu-toggle span:nth-child(3) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Desktop: Always hide hamburger menu - ENFORCED */
@media (min-width: 769px) {
    .mobile-menu-toggle,
    .nav-wrapper .mobile-menu-toggle,
    .navbar .mobile-menu-toggle,
    .container .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    .mobile-menu-toggle span,
    .mobile-menu-toggle span:nth-child(1),
    .mobile-menu-toggle span:nth-child(2),
    .mobile-menu-toggle span:nth-child(3) {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
    }
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

/* Login Button */
.login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 25px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 769px) {
    .login-btn {
        margin-left: 0;
    }
}

.login-btn i {
    font-size: 14px;
}

.login-btn:hover,
.login-btn.active {
    background: var(--primary-color);
    color: var(--bg-darker);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.4);
}

/* Home Section */
.home-section {
    min-height: 70vh;
    height: auto;
    display: block;
    position: relative;
    padding-top: 250px;
    padding-bottom: 100px;
    overflow: hidden;
    background-size: cover;
    background-position: 50% 50%;
}
    
    @media (max-width: 768px) {
        .home-section {
            padding-top: 180px;
            padding-bottom: 80px;
        }
    }
    
    @media (max-width: 480px) {
        .home-section {
            padding-top: 150px;
            padding-bottom: 60px;
        }
}

.home-section .container {
    height: auto;
    display: block;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0 auto;
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
}

.home-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 50%, #0a0a0a 100%);
    z-index: -1;
}

/* Trees Silhouette Overlay */
.trees-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at bottom, rgba(0, 0, 0, 0.4) 0%, transparent 50%),
        linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0.6;
    z-index: 0;
}

.trees-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px
        ),
        radial-gradient(ellipse 800px 200px at 20% bottom, rgba(0, 0, 0, 0.3), transparent),
        radial-gradient(ellipse 600px 150px at 80% bottom, rgba(0, 0, 0, 0.3), transparent);
    background-size: 100% 100%, 100% 100%, 100% 100%;
}

/* Particles.js Container */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: transparent;
}

.home-content {
    text-align: left;
    width: 66.66%;
    max-width: 800px;
    padding: 0;
    position: relative;
    z-index: 2;
    display: block;
    margin: 0;
    float: left;
}

.home-text {
    margin-top: 0;
    margin-bottom: 8px;
}

.home-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
    display: block;
    font-weight: 400;
    letter-spacing: 1px;
}

.title-wrapper {
    position: relative;
    display: inline-block;
    min-height: 120px; /* 2 satır için sabit yükseklik - kaymayı önler */
    margin-bottom: 25px;
}

.golden-dot {
    position: absolute;
    top: -8px;
    left: -25px;
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.6);
    animation: dotPulse 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes dotPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.3);
        opacity: 0.8;
    }
}

.home-title {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.15;
    margin-top: 0;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.7s forwards;
    color: transparent;
    -webkit-text-stroke: 2px var(--text-primary);
    text-stroke: 2px var(--text-primary);
    letter-spacing: 3px;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.cursor-blink {
    animation: blink 1s infinite;
    color: var(--text-primary);
    -webkit-text-stroke: 2px var(--text-primary);
    text-stroke: 2px var(--text-primary);
}

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

.basic-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px 30px;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.single-basic-info {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.single-basic-info p {
    margin: 0;
    color: var(--text-primary);
    font-weight: 400;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.single-basic-info span {
    color: var(--text-secondary);
    font-weight: 300;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: inline-block;
    max-width: 100%;
}

/* Fix phone number color - prevent link styling */
.single-basic-info p span {
    color: var(--text-secondary) !important;
    text-decoration: none !important;
}

/* Social Media Section in Banner */
.social-media-section {
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 1s ease 1.1s forwards;
}

.social-label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-icon-link:hover {
    color: var(--text-primary);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 165, 0, 0.3);
}

.social-icon-link:hover::before {
    transform: scale(1);
}

.scroll-indicator {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-secondary);
    font-size: 18px;
    animation: bounce 2s infinite;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    section {
        padding: 50px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}
    
    @media (max-width: 768px) {
        .section-header {
            margin-bottom: 40px;
        }
    }
    
    @media (max-width: 480px) {
        .section-header {
            margin-bottom: 30px;
        }
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

/* About Teaser Section (Home Page) */
.about-teaser-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
}

.about-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.about-teaser-image-wrapper {
    position: relative;
}

.about-teaser-image {
    max-width: 400px;
}

.about-teaser-image .image-placeholder {
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
}

.about-teaser-image .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.about-teaser-image:hover .image-placeholder img {
    transform: scale(1.05);
}
    
    @media (max-width: 480px) {
        .about-teaser-image-wrapper {
            max-width: 100%;
            margin: 0 auto;
        }
        
        .about-teaser-image {
            max-width: 100%;
        }
        
        .about-teaser-image .image-placeholder {
            border-radius: 15px;
        }
}

.about-teaser-content {
    padding: 20px 0;
}

.about-teaser-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.about-teaser-subtitle {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-teaser-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-teaser-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.teaser-stat {
    text-align: center;
}

.teaser-stat .stat-num {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.teaser-stat .stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.about-teaser-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-teaser-btn:hover {
    background: var(--primary-color);
    color: var(--bg-darker);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.about-teaser-btn i {
    transition: transform 0.3s ease;
}

.about-teaser-btn:hover i {
    transform: translateX(5px);
}

/* About Section (Legacy) */
.about-section {
    background-color: var(--bg-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.profile-image {
    position: sticky;
    top: 100px;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--text-secondary);
    border: 2px solid var(--border-color);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.section-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.intro-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight {
    color: var(--primary-color);
}

.intro-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.skills-section {
    margin-top: 20px;
}

.skill-item {
    margin-bottom: 30px;
}

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

.skill-name {
    font-size: 16px;
    color: var(--text-primary);
}

.skill-percent {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
}

/* Services Section */
.services-section {
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--bg-card);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Statistics Section */
.stats-section {
    background-color: var(--bg-dark);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    line-height: 1.2;
}

/* Metin içeren stat-number için (proje ismi gibi) */
.stat-item:last-child .stat-number {
    font-size: 22px;
    font-weight: 600;
    max-width: 280px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--bg-darker);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background-color: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-secondary);
    transition: transform 0.5s ease;
    overflow: hidden;
}

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

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-image {
    transform: none;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.portfolio-tags {
    font-size: 14px;
    color: var(--primary-color);
}

.portfolio-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: var(--primary-color);
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: var(--bg-darker);
    transition: all 0.3s ease;
}

.portfolio-view-btn:hover {
    background: var(--text-primary);
    transform: scale(1.05);
}

a.portfolio-item {
    text-decoration: none;
    display: block;
}

.portfolio-item.hide {
    display: none;
}

/* View All Button */
.view-all-wrapper {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: var(--primary-color);
    color: var(--bg-darker);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(5px);
}

/* Resume Section (Timeline Style) */
.resume-section-timeline {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

.resume-section-timeline .experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.resume-section-timeline .experience-column {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.resume-section-timeline .experience-column:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 165, 0, 0.1);
}

.resume-section-timeline .column-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.resume-section-timeline .column-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
}

.resume-section-timeline .column-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.resume-section-timeline .timeline {
    position: relative;
    padding-left: 30px;
}

.resume-section-timeline .timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.resume-section-timeline .timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.resume-section-timeline .timeline-item:last-child {
    padding-bottom: 0;
}

.resume-section-timeline .timeline-dot {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--bg-card);
    box-shadow: 0 0 0 2px var(--primary-color);
}

.resume-section-timeline .timeline-content {
    padding-left: 10px;
}

.resume-section-timeline .timeline-date {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.resume-section-timeline .timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.resume-section-timeline .timeline-company {
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.resume-section-timeline .timeline-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Resume Section (Legacy) */
.resume-section {
    background-color: var(--bg-dark);
}

.resume-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.resume-column-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-primary);
}

.resume-item {
    margin-bottom: 40px;
    position: relative;
    padding-left: 100px;
}

.resume-date {
    position: absolute;
    left: 0;
    top: 0;
    padding: 8px 15px;
    background-color: var(--bg-card);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.resume-item-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.resume-item-subtitle {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.resume-item-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    background-color: var(--bg-darker);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-image {
    margin-bottom: 20px;
}

.team-image .image-placeholder {
    aspect-ratio: 1;
    border-radius: 50%;
    margin: 0 auto;
    max-width: 200px;
}

.team-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.team-role {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Blog Section */
.blog-section {
    background-color: var(--bg-dark);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    overflow: hidden;
}

.blog-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--text-primary);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

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

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.cta-text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--primary-color);
    border: none;
    border-radius: 50px;
    color: var(--bg-darker);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.4);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-darker);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .form-input {
        padding: 12px 15px;
        font-size: 14px;
    }
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

@media (max-width: 480px) {
    .form-textarea {
        min-height: 120px;
    }
}

.form-submit {
    padding: 15px 40px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-info-card {
    background-color: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-primary);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.footer-logo:hover {
    color: var(--primary-color);
}

.footer-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 12px;
}

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

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

.footer-social-section .social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--text-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}
    
    @media (max-width: 768px) {
        .scroll-top {
            width: 45px;
            height: 45px;
            bottom: 20px;
            right: 20px;
            font-size: 18px;
        }
    }
    
    @media (max-width: 480px) {
        .scroll-top {
            width: 40px;
            height: 40px;
            bottom: 15px;
            right: 15px;
            font-size: 16px;
        }
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

/* ==================== */
/* PAGE HEADER STYLES */
/* ==================== */

.page-header {
    padding: 180px 0 80px;
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 165, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 165, 0, 0.08) 0%, transparent 40%);
    z-index: 0;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease forwards;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
        flex-wrap: wrap;
    }
    
    @media (max-width: 480px) {
        .breadcrumb {
            gap: 10px;
            font-size: 13px;
        }
        
        .breadcrumb .separator {
            font-size: 10px;
        }
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb .separator {
    color: var(--border-color);
    font-size: 12px;
}

.breadcrumb .current {
    color: var(--primary-color);
    font-weight: 500;
}

/* ==================== */
/* PROJECTS PAGE STYLES */
/* ==================== */

.projects-page-section {
    padding: 80px 0;
    background-color: var(--bg-darker);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.project-card {
    background-color: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}
    
    @media (max-width: 480px) {
        .project-card {
            border-radius: 12px;
        }
        
        .project-info {
            padding: 20px;
            min-height: auto;
        }
        
        .project-title {
            font-size: 16px;
        }
        
        .project-desc {
            font-size: 13px;
        }
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.project-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.project-image .image-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
    border-radius: 0;
    border: none;
    font-size: 48px;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-card) 100%);
    transition: transform 0.5s ease;
    overflow: hidden;
}

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

.project-card:hover .project-image .image-placeholder {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.project-link,
.project-expand {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-darker);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.project-card:hover .project-link,
.project-card:hover .project-expand {
    transform: translateY(0);
}

.project-link:hover,
.project-expand:hover {
    background: var(--text-primary);
    transform: scale(1.1);
}

.project-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.project-category {
    display: inline-block;
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.project-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.project-card:hover .project-title {
    color: var(--primary-color);
}

.project-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 5px 12px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 20px;
    font-size: 12px;
    color: var(--primary-color);
}

/* Load More Button */
.load-more-wrapper {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* ==================== */
/* CONTACT PAGE STYLES */
/* ==================== */

.contact-page-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-header {
    margin-bottom: 10px;
}

.contact-info-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.contact-info-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 400;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.contact-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-darker);
    font-size: 22px;
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

.contact-card-content p {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.contact-social {
    margin-top: 20px;
}

.contact-social h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    letter-spacing: 0.3px;
}

.social-icons-row {
    display: flex;
    gap: 12px;
}

/* Contact Form Column */
.contact-form-column {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
}

.form-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-grid .form-group {
    margin-bottom: 0;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b0b0b0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 50px;
    color: var(--bg-darker);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
    
    @media (max-width: 768px) {
        .form-submit-btn {
            padding: 15px 35px;
            font-size: 15px;
            width: 100%;
            justify-content: center;
        }
    }
    
    @media (max-width: 480px) {
        .form-submit-btn {
            padding: 12px 30px;
            font-size: 14px;
        }
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.4);
}

.form-submit-btn i {
    transition: transform 0.3s ease;
}

.form-submit-btn:hover i {
    transform: translateX(5px);
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
}

.map-overlay i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.map-overlay p {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.map-overlay span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--bg-darker);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ==================== */
/* ABOUT PAGE STYLES */
/* ==================== */

/* About Intro Section */
.about-intro-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    max-width: 400px;
}

.about-image .image-placeholder {
    aspect-ratio: 4/5;
    border-radius: 20px;
    overflow: hidden;
}

.about-image .image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-main-image {
    aspect-ratio: 4/5;
    border-radius: 20px;
    max-width: 400px;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.3);
}

.exp-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--bg-darker);
}

.exp-text {
    font-size: 14px;
    color: var(--bg-darker);
    font-weight: 500;
}

.about-intro-content {
    padding: 20px 0;
}

.about-intro-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.about-intro-subtitle {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.about-intro-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-info-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.about-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
}

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

.about-info-item .info-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 3px;
}

.about-info-item .info-value {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 500;
}

.about-info-item .info-value.available {
    color: #4ade80;
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: var(--primary-color);
    border-radius: 50px;
    color: var(--bg-darker);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Skills Page Section */
.skills-page-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 60px;
}

.skills-category {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.skills-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

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

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Skills Table */
.skills-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    display: table;
}

.skills-table thead {
    display: table-header-group;
}

.skills-table thead th {
    text-align: left;
    padding: 12px 15px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border-color);
    display: table-cell;
}

.skills-table thead th:nth-child(5) {
    text-align: right;
}

.skills-table tbody {
    display: table-row-group;
}

.skills-table tbody tr {
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
    display: table-row;
}

.skills-table tbody tr:hover {
    background-color: rgba(255, 165, 0, 0.05);
}

.skills-table tbody td {
    padding: 18px 15px;
    vertical-align: middle;
    display: table-cell;
}

.skill-icon-cell {
    width: 50px;
    text-align: center;
}

.skill-icon-cell i {
    font-size: 22px;
    color: var(--primary-color);
}

.skill-name-cell {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.skill-category-cell {
    color: var(--text-secondary);
    font-size: 14px;
}

.skill-subtitle-cell {
    color: var(--text-secondary);
    font-size: 13px;
    max-width: 200px;
}

.skill-percent-cell {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    text-align: right;
    white-space: nowrap;
    width: 80px;
    min-width: 80px;
}

.skill-progress-cell {
    width: 150px;
    min-width: 120px;
}

.skill-progress-cell .skill-bar {
    margin: 0;
}

/* Mobile: Convert table to cards */
@media (max-width: 768px) {
    .skills-table,
    .skills-table thead,
    .skills-table tbody,
    .skills-table tbody tr,
    .skills-table thead th,
    .skills-table tbody td {
        display: block;
    }
    
    .skills-table thead {
        display: none;
    }
    
    .skills-table tbody tr {
        display: block;
        background: var(--bg-darker);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        margin-bottom: 15px;
        padding: 20px;
        transition: all 0.3s ease;
    }
    
    .skills-table tbody tr:hover {
        background: var(--bg-card);
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .skills-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border: none;
        text-align: left;
        flex-wrap: wrap;
    }
    
    .skills-table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary-color);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-right: 15px;
        flex-shrink: 0;
        min-width: 100px;
    }
    
    .skills-table tbody td:empty::before {
        display: none;
    }
    
    .skill-icon-cell {
        display: flex;
        justify-content: center;
        padding: 15px 0 20px 0;
        width: 100%;
        border-bottom: 2px solid var(--border-color);
        margin-bottom: 15px;
    }
    
    .skill-icon-cell::before {
        display: none;
    }
    
    .skill-icon-cell i {
        font-size: 32px;
    }
    
    .skill-name-cell {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-primary);
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
        justify-content: flex-start;
    }
    
    .skill-name-cell::before {
        display: none;
    }
    
    .skill-name-cell + .skill-category-cell {
        margin-top: 5px;
    }
    
    .skill-category-cell::before {
        content: attr(data-label);
    }
    
    .skill-subtitle-cell::before {
        content: attr(data-label);
    }
    
    .skill-subtitle-cell {
        max-width: 100%;
        font-size: 14px;
        line-height: 1.5;
        flex-wrap: wrap;
    }
    
    .skill-percent-cell::before {
        content: attr(data-label);
    }
    
    .skill-progress-cell::before {
        content: attr(data-label);
    }
    
    .skill-percent-cell {
        width: 100%;
        text-align: left;
        font-size: 16px;
    }
    
    .skill-progress-cell {
        width: 100%;
        min-width: 100%;
        padding-top: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .skill-progress-cell::before {
        content: "Progress: ";
        margin-bottom: 8px;
        display: block;
        width: 100%;
    }
    
    .skill-progress-cell .skill-bar {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .skills-table tbody tr {
        padding: 15px;
    }
    
    .skills-table tbody td {
        padding: 8px 0;
        font-size: 14px;
    }
    
    .skills-table tbody td::before {
        font-size: 12px;
        min-width: 80px;
    }
    
    .skill-name-cell {
        font-size: 16px;
    }
    
    .skill-icon-cell i {
        font-size: 28px;
    }
    
    .skill-progress-cell {
        padding-top: 12px;
    }
}

/* Tools Section */
.tools-section {
    text-align: center;
}

.tools-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tool-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 30px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    min-width: 100px;
}

.tool-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.tool-item i {
    font-size: 32px;
    color: var(--primary-color);
}

.tool-item span {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Experience Section */
.experience-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.experience-column {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.column-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.column-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 22px;
}

.column-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 35px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--bg-card);
}

.timeline-content {
    padding-left: 10px;
}

.timeline-date {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 20px;
    font-size: 13px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.timeline-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.timeline-company {
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.timeline-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Fun Facts Section */
.fun-facts-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fun-fact-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.fun-fact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.fun-fact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.fun-fact-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.fun-fact-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.fun-fact-label {
    font-size: 15px;
    color: var(--text-secondary);
}

/* ==================== */
/* PROJECT DETAIL PAGE */
/* ==================== */

/* Project Hero */
.project-hero {
    padding: 180px 0 80px;
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    overflow: hidden;
}

.project-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 165, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 165, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

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

.project-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    animation: fadeInUp 0.8s ease forwards;
}

.project-hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.project-hero-tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-tag {
    padding: 8px 20px;
    background: rgba(255, 165, 0, 0.15);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 25px;
    font-size: 14px;
    color: var(--primary-color);
}

/* Project Main Image */
.project-main-image {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.main-image-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.main-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.main-project-image {
    aspect-ratio: 16/9;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main-project-image i {
    font-size: 60px;
}

.main-project-image span {
    font-size: 18px;
}

/* Project Overview */
.project-overview {
    padding: 80px 0;
    background: var(--bg-darker);
}

.overview-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

/* Project Sidebar */
.project-sidebar {
    position: sticky;
    top: 100px;
}

.project-info-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid var(--border-color);
}

.info-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.info-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.info-link {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: var(--primary-dark);
}

.info-link i {
    font-size: 12px;
}

.tech-stack {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.tech-stack .info-label {
    display: block;
    margin-bottom: 12px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.live-demo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 25px;
    margin-top: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 12px;
    color: var(--bg-darker);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.live-demo-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.4);
}

/* Project Description */
.project-description {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.description-section {
    color: var(--text-primary);
}

.section-heading {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.section-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: 28px;
    background: var(--primary-color);
    border-radius: 2px;
}

.description-section p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.challenge-list {
    list-style: none;
    margin-top: 20px;
}

.challenge-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.challenge-list li i {
    color: var(--primary-color);
    margin-top: 3px;
}

/* Tech Category Styles */
.tech-category {
    margin-bottom: 40px;
}

.tech-category-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
}

.tech-category .challenge-list {
    margin-top: 10px;
}

/* Solution Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 25px;
}

.solution-item {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.solution-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.solution-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.solution-icon i {
    font-size: 26px;
    color: var(--primary-color);
}

.solution-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.solution-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Project Gallery */
.project-gallery {
    padding: 80px 0;
    background: var(--bg-dark);
}

.gallery-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: var(--bg-card);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item.large {
    grid-column: span 2;
}

/* Gallery Images - Her boyuttaki resim için */
.gallery-item {
    aspect-ratio: 16 / 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item.large {
    aspect-ratio: 32 / 10;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Gallery Caption */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Placeholder için eski stiller (fallback) */
.gallery-item .image-placeholder {
    aspect-ratio: 16/10;
    border-radius: 0;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery-item .image-placeholder i {
    font-size: 40px;
}

.gallery-item .image-placeholder span {
    font-size: 14px;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
}

.image-modal.show {
    display: flex;
}

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

.modal-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
}

/* Project Results */
.project-results {
    padding: 80px 0;
    background: var(--bg-darker);
}

.results-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 15px;
}

.results-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 50px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.result-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.result-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 165, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.result-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.result-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.result-label {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Project Testimonial */
.project-testimonial {
    padding: 80px 0;
    background: var(--bg-dark);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 50px;
    background: var(--bg-card);
    border-radius: 25px;
    border: 1px solid var(--border-color);
    position: relative;
}

.quote-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.quote-icon i {
    font-size: 28px;
    color: var(--bg-darker);
}

.testimonial-text {
    font-size: 20px;
    color: var(--text-primary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--bg-darker);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
}

.author-avatar i {
    font-size: 24px;
    color: var(--text-secondary);
}

.author-info {
    text-align: left;
}

.author-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-role {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

/* Project Navigation */
.project-navigation {
    padding: 60px 0;
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.nav-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    padding: 25px 30px;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.nav-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.nav-item.prev {
    text-align: left;
}

.nav-item.next {
    text-align: right;
}

.nav-item.all {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 30px;
}

.nav-item.all i {
    font-size: 24px;
    color: var(--primary-color);
}

.nav-item.all span {
    font-size: 14px;
    color: var(--text-secondary);
}

.nav-label {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.nav-item.next .nav-label {
    justify-content: flex-end;
}

.nav-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
}

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */

@media (max-width: 1024px) {
    .about-teaser-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-teaser-image .image-placeholder {
        margin: 0 auto;
    }
    
    .about-teaser-image {
        margin: 0 auto;
    }
    
    .about-teaser-stats {
        justify-content: center;
    }
    
    .about-teaser-btn {
        justify-content: center;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrapper {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .experience-badge {
        right: 0;
    }
    
    .about-info-list {
        grid-template-columns: 1fr;
    }
    
    .about-buttons {
        justify-content: center;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .fun-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .profile-image {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid,
    .portfolio-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resume-content {
        grid-template-columns: 1fr;
    }
    
    .resume-section-timeline .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
    
    /* Project Detail Responsive */
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-sidebar {
        position: static;
        order: 2;
    }
    
    .project-info-card {
        padding: 25px 20px;
    }
    
    .info-card-title {
        font-size: 18px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .info-item {
        padding: 10px 0;
        flex-wrap: wrap;
    }
    
    .info-label {
        font-size: 13px;
        margin-bottom: 4px;
        width: 100%;
    }
    
    .info-value {
        font-size: 13px;
        width: 100%;
        word-break: break-word;
    }
    
    .info-link {
        font-size: 12px;
        word-break: break-all;
        flex-wrap: wrap;
    }
    
    .live-demo-btn {
        padding: 12px 20px;
        font-size: 14px;
        margin-top: 20px;
    }
    
    .project-description {
        order: 1;
        gap: 30px;
    }
    
    .section-heading {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .description-section {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .description-section p {
        font-size: 14px;
        line-height: 1.6;
        word-wrap: break-word;
    }
    
    .tech-category {
        margin-top: 20px;
    }
    
    .tech-category-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .challenge-list {
        font-size: 13px;
    }
    
    .challenge-list li {
        padding: 8px 0;
        word-wrap: break-word;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .nav-item.all {
        grid-column: 1 / -1;
        order: -1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        clip: auto !important;
        clip-path: none !important;
        z-index: 1001 !important;
        cursor: pointer !important;
        order: 3;
    }
    
    .mobile-menu-toggle:not([disabled]) {
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    .mobile-menu-toggle span,
    .mobile-menu-toggle span:nth-child(1),
    .mobile-menu-toggle span:nth-child(2),
    .mobile-menu-toggle span:nth-child(3) {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        height: 3px !important;
    }
    
    .nav-wrapper {
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .logo {
        order: 1;
        flex-shrink: 0;
    }
    
    .login-btn {
        order: 2;
        padding: 8px 16px;
        font-size: 13px;
        margin-left: auto;
        flex-shrink: 0;
    }
    
    .login-btn span {
        display: none;
    }
    
    .login-btn i {
        margin: 0;
    }
    
    .nav-menu {
        order: 4;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        opacity: 0;
        z-index: 999;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        width: 100%;
        visibility: hidden;
        will-change: transform;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
    
    /* Prevent menu from showing during scroll */
    body.scrolling .nav-menu {
        transform: translateX(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    body.scrolling .nav-menu.active {
        transform: translateX(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
    }
    
    /* Ensure only one hamburger menu is visible on mobile */
    .mobile-menu-btn,
    button.mobile-menu-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        pointer-events: none !important;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 16px;
        width: 100%;
    }
    
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    .home-title {
        font-size: 32px;
        -webkit-text-stroke: 1.5px var(--text-primary);
        text-stroke: 1.5px var(--text-primary);
        letter-spacing: 1px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
    }
    
    .title-wrapper {
        min-height: 80px;
    }
    
    .golden-dot {
        width: 8px;
        height: 8px;
        top: -10px;
        left: -15px;
    }
    
    .home-content {
        gap: 25px;
        padding-top: 0;
        padding-bottom: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .home-section .container {
        height: auto;
        align-items: flex-start;
    }
    
    .home-section {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .basic-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 20px;
    }
    
    .single-basic-info {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .single-basic-info p {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .single-basic-info span {
        font-size: 12px;
        word-break: break-all;
        display: block;
        margin-top: 2px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .services-grid,
    .portfolio-grid,
    .blog-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-item:last-child .stat-number {
        font-size: 20px;
        max-width: 200px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-media-section {
        margin-top: 30px;
    }
    
    .social-icon-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .page-title {
        font-size: 40px;
    }
    
    .page-header {
        padding: 140px 0 60px;
    }
    
    .contact-form-column {
        padding: 25px 20px;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        gap: 40px;
    }
    
    .contact-info-column {
        gap: 20px;
    }
    
    .contact-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-card-icon {
        margin: 0 auto 15px;
    }
    
    .contact-card:hover {
        transform: translateY(-5px);
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-social-section .social-links {
        justify-content: center;
    }
    
    /* About Page 768px */
    .about-teaser-title {
        font-size: 32px;
    }
    
    .about-teaser-stats {
        gap: 25px;
    }
    
    .teaser-stat .stat-num {
        font-size: 28px;
    }
    
    .about-intro-title {
        font-size: 32px;
    }
    
    .about-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .fun-facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .fun-fact-card {
        padding: 25px 20px;
    }
    
    .fun-fact-number {
        font-size: 28px;
    }
    
    /* Project Detail 768px */
    .project-hero-title {
        font-size: 36px;
    }
    
    .project-hero-subtitle {
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .gallery-item img,
    .gallery-item.large img {
        min-height: 200px;
    }
    
    /* Modal responsive */
    .modal-image {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 35px;
    }
    
    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .result-card {
        padding: 25px 20px;
    }
    
    .result-number {
        font-size: 32px;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .nav-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-item.next,
    .nav-item.prev {
        text-align: center;
    }
    
    .nav-label {
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 22px;
    }
    
    .nav-wrapper {
        gap: 10px;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .nav-link {
        font-size: 15px;
        padding: 12px 0;
    }
    
    .mobile-menu-toggle {
        width: 25px;
        height: 25px;
    }
    
    .mobile-menu-toggle span {
        height: 2px;
    }
    
    .login-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .home-title {
        font-size: 24px;
        -webkit-text-stroke: 1px var(--text-primary);
        text-stroke: 1px var(--text-primary);
        letter-spacing: 0.5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
    }
    
    .title-wrapper {
        min-height: 60px;
    }
    
    .golden-dot {
        width: 7px;
        height: 7px;
        top: -8px;
        left: -12px;
    }
    
    .home-content {
        gap: 20px;
        padding-top: 0;
        padding-bottom: 0;
        max-width: 100%;
    }
    
    .home-section .container {
        height: auto;
        align-items: flex-start;
    }
    
    .home-section {
        padding-top: 100px;
        padding-bottom: 50px;
        min-height: auto;
    }
    
    .home-subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .basic-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 12px;
    }
    
    .single-basic-info {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .single-basic-info p {
        font-size: 12px;
        line-height: 1.3;
    }
    
    .single-basic-info span {
        font-size: 11px;
        word-break: break-all;
        display: block;
        margin-top: 2px;
    }
    
    .social-media-section {
        margin-top: 25px;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icon-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item:last-child .stat-number {
        font-size: 18px;
        max-width: 100%;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-header {
        padding: 120px 0 50px;
    }
    
    .contact-intro {
        font-size: 14px;
    }
    
    .cta-title {
        font-size: 26px;
    }
    
    .cta-btn {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .project-hero {
        padding: 140px 0 60px;
    }
    
    .project-hero-title {
        font-size: 28px;
    }
    
    .project-info-card {
        padding: 20px 15px;
    }
    
    .info-card-title {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    .info-item {
        padding: 8px 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-label {
        font-size: 12px;
        margin-bottom: 4px;
        width: 100%;
    }
    
    .info-value {
        font-size: 12px;
        width: 100%;
        word-break: break-word;
    }
    
    .info-link {
        font-size: 11px;
        word-break: break-all;
        flex-wrap: wrap;
    }
    
    .live-demo-btn {
        padding: 10px 15px;
        font-size: 13px;
        margin-top: 15px;
    }
    
    .project-description {
        gap: 25px;
    }
    
    .section-heading {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .description-section {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .description-section p {
        font-size: 13px;
        line-height: 1.5;
        word-wrap: break-word;
    }
    
    .tech-category-title {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .challenge-list {
        font-size: 12px;
    }
    
    .challenge-list li {
        padding: 6px 0;
        word-wrap: break-word;
    }
    
    .overview-grid {
        gap: 25px;
        flex-wrap: wrap;
    }
    
    .info-label,
    .info-value {
        font-size: 13px;
    }
    
    .section-heading {
        font-size: 22px;
    }
    
    .description-section p {
        font-size: 14px;
    }
    
    .about-teaser-title {
        font-size: 28px;
    }
    
    .about-intro-title {
        font-size: 28px;
    }
    
    .skills-category {
        padding: 25px 20px;
    }
    
    .skills-category-title {
        font-size: 18px;
    }
    
    .experience-column {
        padding: 25px 20px;
    }
    
    .column-title {
        font-size: 20px;
    }
    
    .timeline-title {
        font-size: 16px;
    }
    
    .timeline-desc {
        font-size: 13px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

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

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

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

/* ============================================ */
/* FORCE HIDE HAMBURGER MENU ON DESKTOP - FINAL */
/* ============================================ */
@media (min-width: 769px) {
    /* Ultra-specific selectors to override everything */
    body .navbar .container .nav-wrapper .mobile-menu-toggle,
    body .navbar .nav-wrapper .mobile-menu-toggle,
    .navbar .mobile-menu-toggle,
    .nav-wrapper .mobile-menu-toggle,
    #mobileMenuToggle.mobile-menu-toggle,
    button.mobile-menu-toggle,
    button#mobileMenuToggle,
    * .mobile-menu-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
        min-width: 0 !important;
        min-height: 0 !important;
        max-width: 0 !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        clip: rect(0, 0, 0, 0) !important;
        clip-path: inset(50%) !important;
        font-size: 0 !important;
        line-height: 0 !important;
        text-indent: -9999px !important;
    }
    
    /* Hide all spans inside hamburger */
    body .navbar .mobile-menu-toggle span,
    body .navbar .mobile-menu-toggle span::before,
    body .navbar .mobile-menu-toggle span::after,
    .mobile-menu-toggle span,
    .mobile-menu-toggle span::before,
    .mobile-menu-toggle span::after,
    .mobile-menu-toggle span:nth-child(1),
    .mobile-menu-toggle span:nth-child(2),
    .mobile-menu-toggle span:nth-child(3),
    #mobileMenuToggle span,
    #mobileMenuToggle span::before,
    #mobileMenuToggle span::after,
    * .mobile-menu-toggle span {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        background: transparent !important;
        content: none !important;
    }
    
    /* Remove any spacing from nav-wrapper when hamburger is hidden */
    .nav-wrapper {
        gap: 40px;
    }
    
    .nav-wrapper::after {
        content: none !important;
    }
}
