/* Proje Detay Sayfası Stilleri */
        .project-hero {
            height: 70vh;
            position: relative;
            margin-top: -120px;
            padding-top: 120px;
            overflow: hidden;
        }
        
        .project-hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: -1;
            filter: brightness(0.7);
        }
        
        .project-hero-content {
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding-bottom: 80px;
            position: relative;
            z-index: 1;
        }
        
        .project-name {
            font-family: 'AW Conqueror Didot Light', serif;
            font-size: 4.5rem;
            color: white;
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
        }
        
        .project-name::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 5px;
            background-color: var(--copper);
            border-radius: 2px;
        }
        
        .project-location-hero {
            font-size: 1.5rem;
            color: var(--copper);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .project-location-hero i {
            margin-right: 10px;
        }
        
        .project-slogan {
            font-size: 1.2rem;
            max-width: 600px;
            margin-bottom: 30px;
        }
        
        .project-info-bar {
            background-color: rgba(13, 35, 64, 0.9);
            padding: 20px 0;
            position: relative;
            margin-top: -40px;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }
        
        .project-info-content {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .project-status-display {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .status-badge {
            background: var(--copper);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .progress-container {
            display: flex !important;
            align-items: center !important;
            gap: 10px !important;
            flex-wrap: nowrap !important;
            flex-direction: row !important;
        }
        
        .progress-label {
            font-size: 0.8rem;
            color: white;
            white-space: nowrap;
        }
        
        .progress-bar-container {
            width: 120px;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            overflow: hidden;
            flex-shrink: 0;
        }
        
        .progress-bar-fill {
            height: 100%;
            background: linear-gradient(to right, var(--copper), var(--copper-light));
            border-radius: 4px;
            /* width: 70%; Project completion percentage - will be set inline for GOP Guler */
        }
        
        .project-completion {
            color: var(--copper);
            font-weight: 600;
            font-size: 1rem;
        }
        
        .project-content-section {
            padding: 80px 0;
        }
        
        .project-content-section.bg-light {
            background-color: white;
            color: #333;
        }
        
        .section-description {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }
        
        .description-content {
            flex: 2;
            min-width: 300px;
        }
        
        .description-content p {
            margin-bottom: 20px;
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .key-features {
            flex: 1;
            min-width: 250px;
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
            padding: 30px;
            border-radius: 8px;
            color: white;
        }
        
        .key-features h3 {
            font-family: 'AW Conqueror Didot Light', serif;
            color: var(--copper);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .features-list {
            list-style: none;
            padding: 0;
        }
        
        .features-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        
        .features-list li i {
            color: var(--copper);
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .detailed-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon-container {
            width: 100%;
            height: 160px;
            background: linear-gradient(135deg, rgba(200, 117, 51, 0.9) 0%, rgba(224, 148, 107, 0.9) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .feature-card-content {
            padding: 20px;
            text-align: center;
        }
        
        .feature-card-content h4 {
            color: var(--copper);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .feature-card-content p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .specs-table th, 
        .specs-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .specs-table th {
            background-color: var(--dark-blue);
            color: white;
            font-weight: 500;
        }
        
        .specs-table tr:last-child td {
            border-bottom: none;
        }
        
        .specs-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .floor-plans {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 40px;
            justify-content: center; /* Kartları yatayda ortalar */
        }
        
        .plan-card {
            flex: 1;
            min-width: 300px;
            max-width: 450px; /* Max genişlik ayarlandı */
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }
        
        .plan-image {
            width: 100%;
            height: 250px;
            object-fit: contain; /* Planların bozulmaması için contain */
            background-color: #f5f5f5;
            border-bottom: 1px solid #eee;
            padding: 20px; /* İç boşluk eklendi */
        }
        
        .plan-content {
            padding: 20px;
        }
        
        .plan-content h4 {
            font-family: 'AW Conqueror Didot Light', serif;
            color: var(--copper);
            margin-bottom: 5px;
        }
        
        .plan-specs {
            display: flex;
            justify-content: space-between;
            margin-top: 15px;
            border-top: 1px solid #eee;
            padding-top: 15px;
        }
        
        .plan-spec-item {
            text-align: center;
        }
        
        .spec-number {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--copper);
        }
        
        .spec-text {
            font-size: 0.85rem;
            color: #666;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }
        
        .gallery-item {
            height: 200px;
            border-radius: 8px;
            overflow: hidden;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: all 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .location-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 30px;
        }
        
        .map-container {
            flex: 1;
            min-width: 300px;
            height: 400px;
            background-color: #f5f5f5;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .location-details {
            flex: 1;
            min-width: 300px;
        }
        
        .location-details h3 {
            font-family: 'AW Conqueror Didot Light', serif;
            color: var(--copper);
            margin-bottom: 20px;
        }
        
        .distance-list {
            list-style: none;
            padding: 0;
        }
        
        .distance-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .distance-list li i {
            width: 40px;
            height: 40px;
            background: rgba(200, 117, 51, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--copper);
            margin-right: 15px;
        }
        
        .distance-list li span {
            font-weight: 600;
            margin-right: 5px;
        }
        
        .section-title {
            font-family: 'AW Conqueror Didot Light', serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 3px;
            background: var(--copper);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--copper);
            margin-bottom: 30px;
        }
        
        .section-title.text-center {
            text-align: center;
        }
        
        .section-title.text-center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .contact-cta {
            background: linear-gradient(135deg, var(--dark-blue) 0%, var(--medium-blue) 100%);
            padding: 60px 0;
            text-align: center;
            color: white;
        }
        
        .cta-title {
            font-family: 'AW Conqueror Didot Light', serif;
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .cta-text {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-outline-light {
            background: transparent;
            color: white;
            border: 2px solid white;
            transition: all 0.3s ease;
        }
        
        .btn-outline-light:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }
        
        /* Beyaz Footer Override */
        footer.footer-light {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
            color: var(--dark-blue);
            border-top: 1px solid #e5e5e5;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        footer.footer-light::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(214, 158, 46, 0.02) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(214, 158, 46, 0.02) 100%);
            pointer-events: none;
            z-index: 0;
        }
        
        footer.footer-light .footer-content {
            position: relative;
            z-index: 1;
        }
        
        footer.footer-light .footer-links h4, 
        footer.footer-light .footer-social h4 {
            color: var(--dark-blue);
        }
        
        footer.footer-light .footer-links h4::after, 
        footer.footer-light .footer-social h4::after {
            background-color: var(--copper);
        }
        
        footer.footer-light .footer-links ul li a {
            color: #666;
        }
        
        footer.footer-light .footer-links ul li a:hover {
            color: var(--copper);
        }
        
        footer.footer-light .footer-social .social-icons a {
            color: var(--dark-blue);
            background-color: transparent;
            border: 1px solid #e5e5e5;
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        footer.footer-light .footer-social .social-icons a:hover {
            background-color: var(--copper);
            color: white;
            border-color: var(--copper);
            transform: translateY(-2px);
        }
        
        footer.footer-light .footer-bottom {
            border-top: 1px solid #e5e5e5;
            position: relative;
            z-index: 1;
        }
        
        footer.footer-light .footer-bottom p {
            color: #666;
        }
        
        /* Responsive Styles - Kapsamlı düzenleme */
        @media (max-width: 1200px) {
            .project-name {
                font-size: 3.5rem;
                padding-left: 25px;
            }
            
            .project-location-hero {
                font-size: 1.3rem;
            }
            
            .project-slogan {
                font-size: 1.1rem;
                max-width: 80%;
            }
        }
        
        @media (max-width: 992px) {
            .project-hero {
                height: 50vh;
                margin-top: -100px;
                padding-top: 100px;
            }
            
            .project-hero-content {
                padding-bottom: 50px;
                justify-content: center;
                text-align: left;
            }
            
            .project-name {
                font-size: 2.8rem;
                padding-left: 20px;
                margin-bottom: 15px;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            }
            
            .project-name::before {
                width: 4px;
            }
            
            .project-location-hero {
                font-size: 1.1rem;
                margin-bottom: 12px;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            }
            
            .project-slogan {
                font-size: 1rem;
                max-width: 90%;
                margin-bottom: 25px;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            }
            
            .project-info-content {
                flex-direction: column;
                gap: 15px;
                align-items: flex-start;
                text-align: left;
            }
            
            .project-status-display {
                flex-direction: row;
                align-items: center;
                gap: 15px;
                flex-wrap: wrap;
            }
            
            .progress-container {
                flex-direction: row;
                align-items: center;
                gap: 12px;
                flex-wrap: nowrap;
            }
            
            .progress-bar-container {
                width: 180px;
            }
        }
        
        @media (max-width: 768px) {
            .project-hero {
                height: 45vh;
                margin-top: 0;
                padding-top: 120px;
            }
            
            .project-hero-content {
                padding-bottom: 30px;
            }
            
            .project-name {
                font-size: 2.2rem;
                padding-left: 15px;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            }
            
            .project-location-hero {
                font-size: 1rem;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            }
            
            .project-slogan {
                font-size: 0.95rem;
                max-width: 95%;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            }
            
            .project-info-bar {
                padding: 15px 0;
                margin-top: -30px;
            }
            
            .project-status-display {
                flex-direction: row;
                align-items: center;
                gap: 12px;
            }
            
            .progress-container {
                display: none !important;
            }
            
            .status-badge {
                padding: 6px 12px;
                font-size: 0.85rem;
                margin-right: 0;
                margin-bottom: 0;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-title {
                font-size: 2.2rem;
            }
            
            .header-container {
                padding: 0 15px;
            }
            
            .container {
                max-width: 100%;
                padding-left: 15px;
                padding-right: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .project-hero {
                height: 40vh;
                margin-top: 0;
                padding-top: 120px;
            }
            
            .project-hero-content {
                padding-bottom: 20px;
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .project-name {
                font-size: 1.8rem;
                padding-left: 10px;
                line-height: 1.2;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            }
            
            .project-name::before {
                width: 3px;
            }
            
            .project-location-hero {
                font-size: 0.9rem;
                margin-bottom: 8px;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            }
            
            .project-slogan {
                font-size: 0.85rem;
                max-width: 100%;
                margin-bottom: 15px;
                line-height: 1.4;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            }
            
            .project-info-bar {
                padding: 12px 0;
                margin-top: -20px;
            }
            
            .project-info-content {
                padding: 0 15px;
            }
            
            .project-status-display {
                flex-direction: row;
                align-items: center;
                gap: 12px;
            }
            
            .progress-container {
                display: none !important;
            }
            
            .status-badge {
                padding: 5px 10px;
                font-size: 0.8rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
            
            .header-container {
                padding: 0 10px;
            }
        }
        
        @media (max-width: 480px) {
            .project-hero {
                height: 35vh;
                margin-top: 0;
                padding-top: 120px;
            }
            
            .project-name {
                font-size: 1.5rem;
                padding-left: 8px;
                text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            }
            
            .project-location-hero {
                font-size: 0.8rem;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            }
            
            .project-slogan {
                font-size: 0.8rem;
                text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            }
            
            .project-status-display {
                flex-direction: row;
                align-items: center;
                gap: 8px;
            }
            
            .progress-container {
                display: none !important;
            }
            
            .container {
                padding-left: 10px;
                padding-right: 10px;
            }
            
            .btn {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
        }
