/* style.css - V4.0 Enhanced Dark & Orange Edition with Animations */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Fira+Code:wght@400;600&display=swap');

:root {
    /* Renk Paleti - Black & Orange */
    --bg-main: #050505;
    --bg-secondary: #121212;
    --glass-bg: rgba(18, 18, 18, 0.8);
    
    --primary: #FF8C00;
    --accent: #FFD700;
    --primary-dim: rgba(255, 140, 0, 0.15);
    
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
    --border-color: #333333;
    
    --gradient-text: linear-gradient(135deg, #FF8C00 0%, #FF4500 100%);
    --shadow-card: 0 10px 30px -10px rgba(255, 140, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { 
    background: var(--primary); 
    border-radius: 5px; 
    transition: var(--transition-normal);
}
::-webkit-scrollbar-thumb:hover { background: #ff9f2a; }

/* Selection */
::selection {
    background: var(--primary);
    color: #000;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: relative;
}

.loader-inner {
    width: 40px;
    height: 40px;
    border: 4px solid transparent;
    border-top-color: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 6px;
    animation: spin 0.7s linear infinite reverse;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Typography */
h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; }
.code-font { font-family: 'Fira Code', monospace; color: var(--primary); }

/* Container */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px; 
}

/* Navbar */
nav {
    position: fixed;
    top: 0; 
    width: 100%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 10px 0;
    transition: all var(--transition-normal);
}

nav.scrolled {
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

nav .wrapper { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

nav .logo { 
    font-size: 1.5rem; 
    font-weight: 700; 
    color: var(--text-main); 
    text-decoration: none;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
}

.logo-image {
    height: 100px;
    width: auto;
    transition: var(--transition-normal);
}

nav .logo:hover .logo-image {
    transform: scale(1.05);
}

nav .logo:hover {
    transform: scale(1.05);
}

nav .logo span { color: var(--primary); }

nav ul { 
    display: flex; 
    gap: 30px; 
    list-style: none; 
}

nav a { 
    text-decoration: none; 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    transition: var(--transition-normal);
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-normal);
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active { 
    color: var(--primary); 
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-dim);
    border: 2px solid var(--primary);
    border-radius: 8px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: 'Outfit', sans-serif;
}

.lang-btn:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.lang-btn i {
    font-size: 1.1rem;
}

#currentLang {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all var(--transition-normal);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Area */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1), transparent 60%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content { 
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-dim);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 140, 0, 0); }
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 .gradient {
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero h1 .typing-text {
    display: inline-block;
    position: relative;
}



.hero p { 
    font-size: 1.25rem; 
    color: var(--text-muted); 
    margin-bottom: 40px; 
    max-width: 650px; 
}

/* CTA Buttons */
.cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    box-shadow: 0 4px 14px 0 rgba(255, 140, 0, 0.3);
    position: relative;
    z-index: 1;
}

.btn-primary:hover { 
    transform: translateY(-3px); 
    background: #ff9f2a;
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5); 
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary-dim);
    transform: translateY(-3px);
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 14px 0 rgba(255, 140, 0, 0.3); }
    50% { box-shadow: 0 4px 30px 0 rgba(255, 140, 0, 0.6); }
    100% { box-shadow: 0 4px 14px 0 rgba(255, 140, 0, 0.3); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 140, 0, 0.03) 50%, transparent 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section General */
section { 
    padding: 100px 0; 
    border-top: 1px solid var(--border-color); 
}

.section-header { 
    margin-bottom: 60px; 
    text-align: center;
}

.section-header h2 { 
    font-size: 2.5rem; 
    margin-bottom: 16px; 
}

.section-header .line { 
    width: 80px; 
    height: 4px; 
    background: var(--gradient-text); 
    border-radius: 2px;
    margin: 0 auto;
}

/* About Section */
.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: start; 
}

/* Profile Card */
.about-profile {
    position: sticky;
    top: 100px;
}

.profile-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1), transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.profile-image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    z-index: 1;
}

.profile-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary), 
        var(--accent), 
        var(--primary)
    );
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.profile-ring::before {
    content: '';
    position: absolute;
    inset: 6px;
    background: var(--bg-secondary);
    border-radius: 50%;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--bg-secondary);
    position: relative;
    z-index: 1;
    transition: transform var(--transition-normal);
}

.profile-card:hover .profile-image {
    transform: scale(1.05);
}

.profile-info {
    position: relative;
    z-index: 1;
}

.profile-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.profile-title {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

/* Tech Stack & Skills */
.about-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.tech-stack-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tech-badge {
    background: rgba(255,255,255,0.03);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #d4d4d4;
    border: 1px solid #333;
    transition: all var(--transition-normal);
    cursor: default;
}

.tech-badge:hover { 
    border-color: var(--primary); 
    color: var(--primary); 
    background: var(--primary-dim);
    transform: translateY(-2px);
}

/* Skill Progress Bars */
.skills-section {
    margin-top: 30px;
}

.skill-bar-container {
    margin-bottom: 25px;
}

.skill-bar-container.mini {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-name {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.skill-percentage {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 10px;
    width: 0;
    transition: width 1.5s ease;
    position: relative;
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Feature Cards */
.grid-3 { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px; 
}

.feature-card {
    background: var(--bg-secondary);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-text);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px -10px rgba(255, 140, 0, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-dim);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i { 
    font-size: 2rem; 
    color: var(--primary);
    transition: color var(--transition-normal);
}

.feature-card:hover .feature-icon i {
    color: #000;
}

.feature-card h3 { 
    margin-bottom: 15px; 
    font-size: 1.4rem; 
    color: #fff; 
}

.feature-card p { 
    color: var(--text-muted); 
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
}

.feature-tags span {
    color: var(--primary);
    background: var(--primary-dim);
    padding: 4px 10px;
    border-radius: 4px;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: var(--bg-secondary);
    padding: 35px 30px;
    border-radius: 12px;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 140, 0, 0.05));
    transition: top var(--transition-slow);
}

.project-card:hover::before {
    top: 0;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px -10px rgba(255, 140, 0, 0.2);
}

.card-header { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.folder-icon {
    transition: transform var(--transition-normal);
}

.project-card:hover .folder-icon {
    transform: scale(1.1) rotate(-5deg);
}

.folder-icon i { 
    font-size: 45px; 
    color: var(--primary); 
}

.links a { 
    color: var(--text-muted); 
    font-size: 22px; 
    transition: all var(--transition-normal);
    display: inline-block;
}

.links a:hover { 
    color: var(--primary);
    transform: scale(1.2);
}

.project-title { 
    color: #fff; 
    font-size: 1.5rem; 
    margin-bottom: 15px; 
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.project-desc { 
    color: var(--text-muted); 
    font-size: 0.95rem; 
    margin-bottom: 25px; 
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.project-tags { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 12px; 
    font-family: 'Fira Code', monospace; 
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

.project-tags .tag {
    color: var(--primary);
    transition: all var(--transition-normal);
}

.project-tags .tag:hover {
    transform: scale(1.1);
}

/* Contact Section */
.contact-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    gap: 60px; 
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.info-item:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.05rem;
    color: var(--text-main);
    font-weight: 600;
}

.contact-form-box {
    background: var(--bg-secondary);
    padding: 45px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInDown 0.5s ease;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert.success {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid #4ade80;
    color: #4ade80;
}

.alert.error {
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid #f87171;
    color: #f87171;
}

.form-group { 
    margin-bottom: 25px; 
}

.form-group label { 
    display: block; 
    margin-bottom: 10px; 
    font-size: 0.95rem; 
    color: var(--text-main);
    font-weight: 500;
}

.form-group input, 
.form-group textarea {
    width: 100%; 
    padding: 15px 18px;
    background: #0a0a0a;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    outline: none; 
    transition: all var(--transition-normal);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
    background: #0d0d0d;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
footer { 
    padding: 10px 0; 
    border-top: 1px solid var(--border-color); 
    background: #000; 
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-left h3 span {
    color: var(--primary);
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: 15px;
}

.footer-left p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==================== MINIMALIST GALLERY SLIDER ==================== */
.gallery-section-minimal {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow: hidden;
    background: var(--bg-main);
}

.container-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.gallery-slider-minimal {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.gallery-slide-minimal {
    min-width: 100%;
    width: 100%;
    aspect-ratio: 3.2 / 1;
    position: relative;
    overflow: hidden;
}

.gallery-image-minimal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.95);
    transition: filter 0.3s ease;
}

.gallery-slide-minimal:hover .gallery-image-minimal {
    filter: brightness(1);
}

/* Optional: Add subtle gradient overlay for text if needed */
.gallery-slide-minimal::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.7), transparent);
    pointer-events: none;
}

/* Responsive heights */
@media (max-width: 1200px) {
    .gallery-slide-minimal {
        aspect-ratio: 3.2 / 1;
    }
}

@media (max-width: 768px) {
    .gallery-slide-minimal {
        aspect-ratio: 3.2 / 1;
    }
}

@media (max-width: 480px) {
    .gallery-slide-minimal {
        aspect-ratio: 3.2 / 1;
    }
}

/* ==================== TESTIMONIALS ==================== */
.testimonials-section {
    background: var(--bg-main);
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide {
    min-width: 100%;
    transition: transform 0.5s ease;
    padding: 0 20px;
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(255, 140, 0, 0.2);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
}

.rating {
    display: flex;
    gap: 5px;
    margin-bottom: 25px;
}

.rating i {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-dim);
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: rgba(255, 140, 0, 0.1);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.testimonial-nav:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: -25px;
}

.testimonial-nav.next {
    right: -25px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.testimonial-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* Floating Buttons */
.floating-container { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    z-index: 9999; 
}

.float-btn {
    width: 55px; 
    height: 55px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: white; 
    font-size: 24px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.5); 
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
}

.float-btn:hover { 
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.7);
}

.linkedin { background: linear-gradient(135deg, #0077b5, #00a0dc); }
.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }
.scroll-top { 
    background: linear-gradient(135deg, var(--primary), var(--accent)); 
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-grid, 
    .contact-wrapper { 
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    
    .about-profile {
        position: static;
    }
    
    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero h1 { 
        font-size: 2.5rem; 
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    nav ul { 
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-main);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--border-color);
    }
    
    nav ul.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-group {
        flex-direction: column;
    }
    
    .btn {
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Gallery responsive */
    .gallery-image-wrapper {
        height: 300px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .gallery-nav.prev {
        left: 10px;
    }

    .gallery-nav.next {
        right: 10px;
    }

    /* Testimonials responsive */
    .testimonial-slide {
        padding: 0;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .testimonial-nav.prev {
        left: 10px;
    }

    .testimonial-nav.next {
        right: 10px;
    }

    /* Language button mobile */
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .profile-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .contact-form-box {
        padding: 30px 20px;
    }
}