* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

:root {
    --primary-color: #2F2F2F;    /* Andezit rengi (koyu gri) */
    --secondary-color: #FF6B1A;  /* Turuncu */
    --light-gray: #f5f5f5;       /* Açık gri */
    --hover-orange: #FF8C47;     /* Hover için daha açık turuncu */
}

body {
    line-height: 1.6;
}

header {
    background-color: var(--primary-color);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    margin-top: 0;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

nav ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    background-color: var(--secondary-color);
}

main {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 3rem 2rem;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border-radius: 20px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.1),
                -5px -5px 15px rgba(255,255,255,0.8);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 26, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 8px 8px 20px rgba(0,0,0,0.15),
                -8px -8px 20px rgba(255,255,255,0.9);
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary-color), var(--hover-orange));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 100px;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover p {
    color: #333;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 26, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.btn-view {
    padding: 0.8rem 1.5rem;
    background: white;
    color: var(--secondary-color);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.project-card:hover .btn-view {
    transform: translateY(0);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.project-details {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.project-details span {
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.9rem;
}

.project-details .material-icons {
    font-size: 1.2rem;
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.contact {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form button {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: var(--hover-orange);
}

footer {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary-color), var(--hover-orange));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-about p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-links a i {
    font-size: 14px;
    color: var(--secondary-color);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    color: #ccc;
}

.footer-contact-item i {
    color: var(--secondary-color);
    font-size: 18px;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: var(--secondary-color);
    text-decoration: none;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

h2 {
    text-align: center;
    margin: 2rem 0;
    color: var(--primary-color);
}

/* Carousel Stilleri */
.carousel-item {
    height: 100vh;
    min-height: 500px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow: hidden; /* Zoom efekti için taşmaları gizle */
}

.carousel-item img {
    object-fit: cover;
    height: 100vh;
    min-height: 500px;
    filter: brightness(0.8);
    transform-origin: center;
    transition: transform 6s ease-in-out; /* Zoom efekti için yavaş geçiş */
    width: 100%;
}

/* Aktif slide'a zoom efekti ekle */
.carousel-item.active img {
    transform: scale(1.2); /* Aktif slide %20 büyüsün */
}

/* Geçiş animasyonları */
.carousel-item-next:not(.carousel-item-start) img,
.active.carousel-item-end img {
    transform: scale(1); /* Çıkan slide normal boyuta dönsün */
}

.carousel-item-prev:not(.carousel-item-end) img,
.active.carousel-item-start img {
    transform: scale(1); /* Giren slide normal boyuttan başlasın */
}

.carousel-caption {
    background: rgba(47, 47, 47, 0.5);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    bottom: 50%;
    transform: translateY(50%);
    z-index: 2; /* Yazıların görünür kalması için */
}

.carousel-caption h2 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.carousel-caption p {
    color: white;
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.8rem 2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--hover-orange);
    border-color: var(--hover-orange);
}

/* Material Icons Stilleri */
.material-icons {
    font-size: 54px;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    background: -webkit-linear-gradient(45deg, var(--secondary-color), var(--hover-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card:hover .material-icons {
    transform: scale(1.2) rotate(5deg);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    nav {
        padding: 0.5rem;
        height: auto;
        flex-wrap: wrap;
    }
    
    nav ul {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0.5rem 0;
        gap: 5px;
    }

    nav ul li a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .logo {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    .logo img {
        height: 40px;
    }

    .nav-social-links {
        margin: 0;
        padding: 0.5rem 0;
    }


    /* Ana içerik margin düzeltmesi */
    main {
        margin-top: 140px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .carousel-caption {
        padding: 1rem;
        bottom: 20%;
        transform: translateY(0);
    }

    .carousel-caption h2 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.5rem 1rem;
    }

    .features {
        padding: 2rem 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .material-icons {
        font-size: 48px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        padding: 1rem;
        gap: 1.5rem;
    }

    .project-image {
        height: 200px;
    }

    .section-title {
        font-size: 2rem;
        margin: 2rem 0;
    }

    .project-info h3 {
        font-size: 1.2rem;
    }

    .experience-badge {
        display: none; /* Mobilde gizle */
    }

    .social-link span {
        display: none;
    }
    
    .social-link {
        padding: 6px;
        width: 32px;
        height: 32px;
        justify-content: center;
        border-radius: 50%;
    }
    
    .social-container {
        justify-content: center;
    }
    
    .social-icon {
        width: 16px;
        height: 16px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 0.95rem;
    }

    nav ul li a {
        padding: 0.4rem 0.9rem;
    }

    .experience-badge {
        width: 60px;
        height: 60px;
    }
}

/* Proje Kartları için Yeni Stiller */
.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    text-align: center;
    margin: 3rem 0;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--hover-orange));
    border-radius: 2px;
}


/* İletişim Sayfası Stilleri */
.contact-hero {
    background: linear-gradient(rgba(47, 47, 47, 0.8), rgba(47, 47, 47, 0.8)),
                url('https://images.pexels.com/photos/1181406/pexels-photo-1181406.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0 50px;
    text-align: center;
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: var(--light-gray);
}

.contact-content {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-info-card h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-info-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: var(--light-gray);
    transform: translateX(5px);
}

.info-item i {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-right: 1rem;
}

.info-item h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-form-card h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.1);
}

.submit-btn {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background: var(--hover-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 26, 0.3);
}

.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .contact-content {
        padding: 40px 0;
    }
    
    .contact-info-card,
    .contact-form-card {
        margin-bottom: 2rem;
    }
    
    .info-item {
        padding: 0.8rem;
    }
    
    .info-item i {
        font-size: 1.5rem;
    }
    
    .map-section {
        padding: 0 0 40px;
    }
}

/* Nav içindeki sosyal medya ikonları */
.nav-social-links {
    display: flex;
    gap: 8px;
    margin-left: 15px;
}

.nav-social-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.nav-social-link.facebook {
    background: linear-gradient(45deg, #3b5998, #1565C0);
}

.nav-social-link:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.nav-social-link i {
    font-size: 16px;
    color: white;
}

/* Mobil düzenleme güncelleme */
@media (max-width: 768px) {
    .nav-social-links {
        margin: 10px 0;
        justify-content: center;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
}

/* Proje Güncellemeleri Bölümü Stilleri */
.recent-projects {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.project-updates {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.project-update-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.project-update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.update-image {
    flex: 0 0 35%;
    overflow: hidden;
}

.update-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-update-card:hover .update-image img {
    transform: scale(1.1);
}

.update-content {
    flex: 1;
    padding: 2rem;
}

.update-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.update-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.update-text {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.progress-container {
    margin-top: 1rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
}

.progress-bar {
    height: 10px;
    background-color: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, var(--secondary-color), var(--hover-orange));
    border-radius: 5px;
    transition: width 1s ease;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .project-update-card {
        flex-direction: column;
    }
    
    .update-image {
        flex: 0 0 200px;
    }
    
    .update-content {
        padding: 1.5rem;
    }
    
    .update-content h3 {
        font-size: 1.3rem;
    }
}

/* Proje Detay Modal Stilleri */
.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    font-size: 1.5rem;
}

.btn-close {
    background-color: white;
    opacity: 0.8;
}

.modal-body {
    padding: 0;
}

.project-detail-content {
    display: flex;
    flex-direction: column;
}

.project-detail-gallery {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.project-detail-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.project-detail-info {
    padding: 2rem;
}

.project-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.project-detail-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.project-detail-date {
    background-color: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.project-detail-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.spec-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 107, 26, 0.1);
    border-radius: 50%;
}

.spec-item div {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.8rem;
    color: #777;
}

.spec-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.project-detail-description h4,
.project-detail-features h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.project-detail-description h4::after,
.project-detail-features h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.project-detail-description p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.project-detail-features ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.8rem;
}

.project-detail-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}

.project-detail-features li i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Responsive düzenlemeler */
@media (min-width: 992px) {
    .project-detail-content {
        flex-direction: row;
    }
    
    .project-detail-gallery {
        width: 50%;
        max-height: none;
    }
    
    .project-detail-gallery img {
        height: 100%;
    }
    
    .project-detail-info {
        width: 50%;
        max-height: 600px;
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .project-detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .project-detail-specs {
        grid-template-columns: 1fr 1fr;
    }
    
    .project-detail-features ul {
        grid-template-columns: 1fr;
    }
} 