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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    font-weight: 400;
    letter-spacing: 0.3px;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(20, 20, 20, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(10, 10, 10, 0.2) 0%, transparent 50%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    background-attachment: fixed;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #FF6B35;
    letter-spacing: 0.5px;
}

/* Override any inline styles for headings */
h1[style*="color: #333"],
h2[style*="color: #333"],
h3[style*="color: #333"],
h1[style*="color:#333"],
h2[style*="color:#333"],
h3[style*="color:#333"] {
    color: #FF6B35 !important;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, #FF7A4A 0%, #F56B3B 100%);
}

.btn-secondary {
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
}

.btn-secondary:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo a:hover {
    opacity: 0.8;
}

.nav-logo img,
.logo-image {
    height: auto;
    width: auto;
    max-height: 70px;
    max-width: 300px;
    object-fit: contain;
    display: block;
}

.nav-logo i {
    color: #FF6B35;
    font-size: 28px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: #ffffff;
    position: relative;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.nav-link:hover {
    color: #FF6B35;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: #FF6B35;
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-link.active {
    color: #FF6B35 !important;
    font-weight: 700;
}

.nav-link.active::after {
    width: 100%;
    height: 3px;
    background: #FF6B35;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

.navbar.scrolled .nav-link.active {
    color: #FF6B35 !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: visible;
}

@media (min-width: 992px) {
    .hero {
        padding-top: 82px;
        padding-bottom: 20px;
        align-items: flex-start;
        min-height: auto;
    }

    .hero-container {
        padding-top: 8px;
        padding-bottom: 0;
    }

    .hero-title {
        color: #ffb992;
        text-shadow: 0 0 24px rgba(255, 122, 74, 0.72), 0 0 52px rgba(255, 107, 53, 0.48);
    }

    .gradient-text {
        background: linear-gradient(135deg, #ffd2b2 0%, #ffad79 35%, #ff7a3f 70%, #ff6429 100%);
        filter: brightness(1.38) saturate(1.5);
        text-shadow: 0 0 26px rgba(255, 122, 74, 0.7), 0 0 56px rgba(255, 107, 53, 0.52);
    }

    .element {
        background: linear-gradient(135deg, rgba(255, 180, 120, 0.96) 0%, rgba(255, 122, 74, 0.92) 45%, rgba(255, 100, 41, 0.88) 100%);
        box-shadow: 0 14px 40px rgba(255, 122, 74, 0.85), 0 0 60px rgba(255, 107, 53, 0.8), 0 0 100px rgba(255, 107, 53, 0.55);
        border: 2px solid rgba(255, 214, 170, 0.95);
        filter: brightness(1.45) saturate(1.58);
    }

    .element-1 {
        top: 12%;
        animation-name: float-top-safe;
        animation-duration: 4.4s;
    }

    .hero-visual {
        height: 420px;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: visible;
}

.hero-content {
    z-index: 10;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #ff9b6b;
    text-shadow: 0 0 18px rgba(255, 107, 53, 0.55), 0 0 40px rgba(255, 107, 53, 0.35);
}

.gradient-text {
    background: linear-gradient(135deg, #ffb087 0%, #ff8c50 40%, #ff6b35 75%, #e55a2b 100%);    
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: brightness(1.25) saturate(1.35);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.6), 0 0 45px rgba(255, 107, 53, 0.4);
}

.hero-description {
    font-size: 1.2rem;
    color: #f4f4f4;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.75);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 100%);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

/* Service Detail Pages Visual Upgrade */
.service-detail-page {
    position: relative;
    padding-top: 110px !important;
    padding-bottom: 90px !important;
    min-height: auto !important;
    background:
        radial-gradient(circle at 12% 14%, rgba(255, 122, 74, 0.12) 0%, transparent 48%),
        radial-gradient(circle at 88% 24%, rgba(255, 107, 53, 0.1) 0%, transparent 46%),
        linear-gradient(180deg, #0d0d0d 0%, #121212 55%, #0f0f0f 100%);
}

.service-detail-page .service-header {
    margin-bottom: 52px !important;
}

.service-detail-page .service-visual-showcase {
    max-width: 880px;
    margin: 0 auto 54px;
    padding: 18px 22px;
    border-radius: 22px;
    border: 1px solid rgba(255, 145, 92, 0.34);
    background: linear-gradient(135deg, rgba(255, 122, 74, 0.12) 0%, rgba(255, 107, 53, 0.08) 45%, rgba(255, 214, 170, 0.08) 100%);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(255, 214, 170, 0.08);
}

.service-detail-page .visual-center-icon {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff8a52 0%, #ff6b35 55%, #e55a2b 100%);
    color: #fff;
    font-size: 2.25rem;
    box-shadow: 0 14px 30px rgba(255, 107, 53, 0.45), 0 0 38px rgba(255, 107, 53, 0.3);
    border: 1px solid rgba(255, 225, 193, 0.5);
}

.service-detail-page .visual-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(16, 16, 16, 0.72);
    color: #ffe3d0;
    font-weight: 600;
    border: 1px solid rgba(255, 145, 92, 0.36);
    backdrop-filter: blur(6px);
}

.service-detail-page .visual-chip i {
    color: #ff9f70;
}

.service-detail-page .service-icon-large {
    box-shadow: 0 16px 45px rgba(255, 107, 53, 0.42) !important;
    border: 1px solid rgba(255, 214, 170, 0.42) !important;
    transform: translateZ(0);
}

.service-detail-page .section-title {
    color: #ffc5a0 !important;
    text-shadow: 0 0 22px rgba(255, 122, 74, 0.45), 0 0 48px rgba(255, 107, 53, 0.35);
}

.service-detail-page .section-description {
    color: #f0f0f0 !important;
    line-height: 1.8 !important;
}

.service-detail-page .service-overview,
.service-detail-page .service-features-detailed,
.service-detail-page .service-process {
    margin-bottom: 62px !important;
}

.service-detail-page .service-overview .row {
    gap: 40px !important;
    align-items: stretch !important;
}

.service-detail-page .service-overview .row > div:nth-child(2),
.service-detail-page .service-process,
.service-detail-page .feature-card {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.92) 0%, rgba(22, 22, 22, 0.96) 100%) !important;
    border: 1px solid rgba(255, 122, 74, 0.32) !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 122, 74, 0.08) inset !important;
    border-radius: 20px !important;
}

.service-detail-page .feature-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease !important;
}

.service-detail-page .feature-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(255, 160, 110, 0.55) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55), 0 0 28px rgba(255, 122, 74, 0.22) !important;
}

.service-detail-page .feature-icon,
.service-detail-page .step-number {
    box-shadow: 0 10px 24px rgba(255, 107, 53, 0.35) !important;
}

.service-detail-page ul li {
    border-bottom-color: rgba(255, 122, 74, 0.24) !important;
}

.service-detail-page ul li:last-child {
    border-bottom: none !important;
}

.service-detail-page .cta-section {
    border-radius: 24px !important;
    box-shadow: 0 20px 45px rgba(229, 90, 43, 0.28), 0 0 0 1px rgba(255, 214, 170, 0.24) inset !important;
    color: #ffffff !important;
}

.service-detail-page .cta-section .btn {
    border-radius: 12px !important;
    font-weight: 700 !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.service-detail-page .cta-section .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28) !important;
}

.service-detail-page .cta-section h2 {
    color: inherit !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22), 0 0 18px rgba(255, 210, 178, 0.28);
}

.service-detail-page .cta-section p {
    color: inherit !important;
    opacity: 0.95 !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

.service-detail-page .cta-section .btn {
    background: #151515 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 208, 178, 0.45) !important;
}

.service-detail-page .cta-section .btn:hover {
    background: #1e1e1e !important;
    color: #ffffff !important;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.hero-visual-mobile {
    display: none;
}

.floating-elements {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    z-index: 1;
}

.element {
    position: absolute;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 140, 80, 0.9) 0%, rgba(255, 107, 53, 0.85) 45%, rgba(229, 90, 43, 0.8) 100%);
    opacity: 1;
    animation: float 4s ease-in-out infinite;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.75), 0 0 50px rgba(255, 107, 53, 0.7), 0 0 90px rgba(255, 107, 53, 0.45);
    z-index: 1;
    border: 2px solid rgba(255, 180, 120, 0.9);
    filter: brightness(1.35) saturate(1.45);
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 5%;
    left: -5%;
    animation-delay: 0s;
}

@keyframes float-top-safe {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    }
    20% {
        transform: translateY(-24px) translateX(16px) rotate(90deg) scale(1.04);
    }
    40% {
        transform: translateY(-30px) translateX(-12px) rotate(180deg) scale(1.08);
    }
    60% {
        transform: translateY(-20px) translateX(18px) rotate(270deg) scale(1.04);
    }
    80% {
        transform: translateY(-14px) translateX(-10px) rotate(360deg) scale(1);
    }
}

.element-2 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: -8%;
    animation-delay: 0.3s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 5%;
    left: 35%;
    animation-delay: 0.6s;
}

.element-4 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 25%;
    animation-delay: 0.9s;
}

.element-5 {
    width: 90px;
    height: 90px;
    bottom: 25%;
    right: -5%;
    animation-delay: 1.2s;
}

.element-6 {
    width: 110px;
    height: 110px;
    top: 55%;
    left: -3%;
    animation-delay: 1.5s;
}

.element-7 {
    width: 130px;
    height: 130px;
    top: 70%;
    right: 15%;
    animation-delay: 1.8s;
    animation-duration: 5s;
}

.element-8 {
    width: 95px;
    height: 95px;
    bottom: 40%;
    left: 20%;
    animation-delay: 2.1s;
    animation-duration: 4.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
    }
    20% {
        transform: translateY(-50px) translateX(25px) rotate(90deg) scale(1.05);
    }
    40% {
        transform: translateY(-60px) translateX(-20px) rotate(180deg) scale(1.1);
    }
    60% {
        transform: translateY(-40px) translateX(30px) rotate(270deg) scale(1.05);
    }
    80% {
        transform: translateY(-30px) translateX(-15px) rotate(360deg) scale(1);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FF6B35;
}

.section-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #0f0f0f;
}

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

.service-card {
    background: #1a1a1a;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FF6B35;
}

.service-card p {
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 5px 0;
    color: #e0e0e0;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: bold;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #FF6B35;
    background: transparent;
    color: #FF6B35;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #FF6B35;
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

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

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-image img {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    padding: 10px;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95) 0%, rgba(229, 90, 43, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Projects Section (Devam Eden Projeler) */
.projects-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.projects-section .container {
    position: relative;
    z-index: 1;
}

.projects-slider-wrapper {
    position: relative;
    overflow: visible;
    padding: 30px 40px;
    margin: 0 -40px;
}

.projects-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.project-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 107, 53, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 5px;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 107, 53, 0.5);
}

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

.project-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    max-width: calc(100% - 20px);
    max-height: calc(100% - 20px);
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    padding: 10px;
}

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

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(229, 90, 43, 0.1) 100%);
    color: rgba(255, 107, 53, 0.5);
}

.project-placeholder i {
    font-size: 4rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.project-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 20px;
    position: relative;
    z-index: 2;
    align-items: stretch;
}

.project-content-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.project-status-vertical {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    flex-shrink: 0;
}

.project-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FF6B35;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.project-card:hover .project-content h3 {
    color: #FF7A4A;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.project-client {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-client::before {
    content: '👤';
    font-size: 0.85rem;
}

.project-description {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #FF6B35;
    font-weight: 500;
    transition: all 0.3s ease;
}

.project-card:hover .project-tag {
    background: rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.5);
    transform: scale(1.05);
}

.project-tag i {
    font-size: 0.75rem;
}

.project-status-vertical .project-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 12px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.25) 0%, rgba(56, 142, 60, 0.25) 100%);
    border: 2px solid rgba(76, 175, 80, 0.5);
    border-radius: 15px;
    font-size: 1rem;
    color: #66BB6A;
    font-weight: 700;
    min-width: 80px;
    position: relative;
    animation: pulse-glow-enhanced 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.4), inset 0 0 20px rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover .project-status-vertical .project-status {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.35) 0%, rgba(56, 142, 60, 0.35) 100%);
    border-color: rgba(76, 175, 80, 0.7);
    color: #81C784;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.6), inset 0 0 25px rgba(76, 175, 80, 0.15);
}

@keyframes pulse-glow-enhanced {
    0%, 100% {
        box-shadow: 0 0 20px rgba(76, 175, 80, 0.4), 
                    0 0 40px rgba(76, 175, 80, 0.2),
                    inset 0 0 20px rgba(76, 175, 80, 0.1);
        border-color: rgba(76, 175, 80, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(76, 175, 80, 0.7), 
                    0 0 60px rgba(76, 175, 80, 0.4),
                    inset 0 0 25px rgba(76, 175, 80, 0.2);
        border-color: rgba(76, 175, 80, 0.8);
    }
}

.project-status-vertical .project-status i {
    font-size: 1.4rem;
    color: #66BB6A;
    animation: spin-enhanced 1.5s linear infinite;
    filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.6));
}

.project-card:hover .project-status-vertical .project-status i {
    color: #81C784;
    filter: drop-shadow(0 0 12px rgba(76, 175, 80, 0.8));
    animation: spin-enhanced 1s linear infinite;
}

@keyframes spin-enhanced {
    from {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    to {
        transform: rotate(360deg) scale(1);
    }
}

.project-status-vertical .status-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    color: #66BB6A;
    text-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

.project-card:hover .project-status-vertical .status-text {
    color: #81C784;
    text-shadow: 0 0 15px rgba(76, 175, 80, 0.7);
}

/* Eski project-status stilleri (geriye dönük uyumluluk için) */
.project-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(76, 175, 80, 0.15);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #4CAF50;
    font-weight: 500;
}

.project-status i {
    font-size: 0.75rem;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.project-link-btn {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(229, 90, 43, 0.2) 100%);
    border: 1px solid rgba(255, 107, 53, 0.4);
    color: #FF6B35;
    font-weight: 600;
    transition: all 0.3s ease;
}

.project-link-btn:hover {
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    border-color: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

/* Responsive for Projects Section */
@media (max-width: 1200px) {
    .project-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
    }
    
    .projects-slider-wrapper {
        margin: 0 -20px;
        padding: 20px 20px;
        overflow: visible;
    }
    
    .projects-slider {
        gap: 16px;
    }
    
    .project-card {
        flex: 0 0 calc(85% - 8px);
        margin: 0 3px;
    }
    
    .project-image {
        height: 220px;
    }
    
    .project-content {
        padding: 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .project-content-main {
        width: 100%;
    }
    
    .project-status-vertical {
        width: 100%;
        padding: 0;
    }
    
    .project-status-vertical .project-status {
        flex-direction: row;
        min-width: auto;
        width: 100%;
        justify-content: center;
        padding: 12px 15px;
    }
    
    .project-status-vertical .status-text {
        font-size: 0.9rem;
    }
    
    .project-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .project-card {
        flex: 0 0 calc(90% - 8px);
    }
    
    .project-image {
        height: 200px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .project-content {
        padding: 15px;
    }
    
    .project-status-vertical .project-status {
        padding: 10px 12px;
    }
    
    .project-status-vertical .project-status i {
        font-size: 1.2rem;
    }
    
    .project-status-vertical .status-text {
        font-size: 0.8rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #0f0f0f;
}

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

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.about-visual-showcase {
    margin: 0 0 26px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 145, 92, 0.3);
    background: linear-gradient(135deg, rgba(255, 122, 74, 0.12) 0%, rgba(255, 107, 53, 0.08) 100%);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 214, 170, 0.08);
}

.about-visual-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff8a52 0%, #ff6b35 55%, #e55a2b 100%);
    color: #fff;
    font-size: 1.7rem;
    box-shadow: 0 10px 24px rgba(255, 107, 53, 0.4), 0 0 28px rgba(255, 107, 53, 0.25);
    border: 1px solid rgba(255, 225, 193, 0.45);
}

.about-visual-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(16, 16, 16, 0.72);
    border: 1px solid rgba(255, 145, 92, 0.36);
    color: #ffe3d0;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.about-visual-chip i {
    color: #ff9f70;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e0e0e0;
}

.feature i {
    color: #FF6B35;
    font-size: 1.2rem;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.94) 0%, rgba(22, 22, 22, 0.98) 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 122, 74, 0.3);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.42);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FF6B35;
    margin-bottom: 10px;
}

.stat-label {
    color: #e0e0e0;
    font-weight: 500;
}

.about-stats .stat-item {
    min-width: 0;
}

/* About Page CTA polish */
.about-page .cta-section {
    background: linear-gradient(135deg, #ff8f5d 0%, #ff6f3b 52%, #e55a2b 100%) !important;
    border: 1px solid rgba(255, 216, 186, 0.35);
    box-shadow: 0 18px 40px rgba(229, 90, 43, 0.32), inset 0 0 0 1px rgba(255, 230, 210, 0.18);
}

.about-page .cta-section h2 {
    color: #111111 !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 14px rgba(255, 210, 178, 0.7), 0 0 28px rgba(255, 140, 80, 0.55);
    letter-spacing: 0.2px;
}

.about-page .cta-section p {
    color: #1a1a1a !important;
    opacity: 1 !important;
    text-shadow: 0 0 12px rgba(255, 220, 190, 0.55), 0 0 24px rgba(255, 150, 95, 0.35);
}

.about-page .cta-section .btn {
    background: #121212 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 178, 133, 0.5);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26), 0 0 18px rgba(255, 125, 72, 0.24);
}

.about-page .cta-section .btn:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #0a0a0a;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.contact-icon i {
    color: white !important;
}

.contact-details h3 {
    margin-bottom: 10px;
    color: #FF6B35;
}

.contact-details p {
    color: #e0e0e0;
    margin: 0;
}

.contact-form {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #0f0f0f;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
    background: #1a1a1a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

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

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.1fr 1.4fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo i {
    color: #FF6B35;
    font-size: 28px;
}

.footer-section p {
    color: #e0e0e0;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: white;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #e0e0e0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF6B35;
}

.region-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.region-link {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    background: #161616;
    border: 1px solid rgba(255, 107, 53, 0.2);
    color: #e8e8e8;
    transition: all 0.25s ease;
}

.region-link:hover {
    border-color: rgba(255, 107, 53, 0.55);
    background: #1d1d1d;
    color: #ffb089;
    transform: translateY(-2px);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.social-links a:hover {
    background: #FF6B35;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.contact-info i {
    color: #FF6B35;
    width: 20px;
}

.contact-info a {
    color: #e0e0e0;
}

.contact-info a:hover {
    color: #FF6B35;
}

.mobile-contact-bar {
    display: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-bottom: 96px;
    }

    .mobile-contact-bar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        padding: 12px 12px calc(12px + env(safe-area-inset-bottom));
        background: rgba(10, 10, 10, 0.96);
        border-top: 1px solid rgba(255, 107, 53, 0.35);
        backdrop-filter: blur(10px);
    }

    .mobile-contact-btn {
        min-height: 58px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;
        font-size: 1.08rem;
        font-weight: 800;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    }

    .mobile-contact-btn.call {
        background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    }

    .mobile-contact-btn.whatsapp {
        background: linear-gradient(135deg, #25D366 0%, #139f47 100%);
    }

    .mobile-contact-btn i {
        font-size: 1.2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #0a0a0a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 15px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    
    .hero-container > .hero-visual {
        order: 2;
        width: 100%;
        max-width: 340px;
        height: 260px;
        margin: 8px auto 0;
        overflow: hidden;
    }

    .hero-visual-desktop {
        display: none;
    }

    .hero-visual-mobile {
        display: flex;
        order: 0;
        width: 100vw;
        max-width: none;
        margin: 0 calc(50% - 50vw);
        height: 250px;
    }

    .floating-elements {
        position: relative;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .service-card {
        padding: 25px 15px;
        max-width: 100%;
        box-sizing: border-box;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }

    .hero-visual {
        max-width: 300px;
        height: 220px;
    }

    .hero-visual-mobile {
        width: 100vw;
        max-width: none;
        margin: 0 calc(50% - 50vw);
        height: 220px;
    }

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

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

    .btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

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

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

    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
