/* ===== TEMEL STİLLER ===== */
:root {
    --primary-color: #1F2933;
    --secondary-color: #F59E0B;
    --light-color: #F9FAFB;
    --dark-color: #111827;
    --gray-color: #6B7280;
    --light-gray: #E5E7EB;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --danger-color: #EF4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.text-center {
    text-align: center;
}

/* ===== BUTONLAR ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #D97706;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===== NAVBAR ===== */
.navbar {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

.logo span {
    font-size: 0.875rem;
    color: var(--gray-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(rgba(31, 41, 51, 0.9), rgba(31, 41, 51, 0.9)), 
                url('../assets/images/gorsel.13.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== KISA TANITIM ===== */
.intro {
    background-color: white;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: var(--gray-color);
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--gray-color);
}

/* ===== PROJE KARTLARI ===== */
.featured-projects {
    background-color: var(--light-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background-color: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.project-image {
    height: 200px;
    position: relative;
    background-color: var(--light-gray);
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.project-status.completed {
    background-color: var(--success-color);
}

.project-status.ongoing {
    background-color: var(--warning-color);
}

.project-status.upcoming {
    background-color: var(--gray-color);
}

.image-count {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.progress-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 0.5rem;
    text-align: center;
}

.progress-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.project-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.project-location {
    color: var(--gray-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-description {
    color: var(--gray-color);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.project-details {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: var(--gray-color);
}

.detail-item i {
    color: var(--secondary-color);
}

/* ===== NEDEN BİZ ÖZET ===== */
.why-us-preview {
    background-color: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.reason-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 0.5rem;
    transition: var(--transition);
}

.reason-card:hover {
    transform: translateY(-5px);
    background-color: white;
    box-shadow: var(--shadow);
}

.reason-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.reason-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.reason-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

/* ===== İLETİŞİM CTA ===== */
.contact-cta {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* ===== PAGE HERO ===== */
.page-hero {
    background-color: var(--primary-color);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ===== HAKKIMIZDA İÇERİK ===== */
.about-content {
    background-color: white;
}

.about-main {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.about-main h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-main h3 {
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.about-text {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-section {
    margin: 3rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 0.5rem;
}

.value-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.mission-statement {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 0.5rem;
    margin-top: 3rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 0.5rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--gray-color);
    font-weight: 500;
}

/* ===== PROJE FİLTRELERİ ===== */
.project-filters {
    background-color: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 70px;
    z-index: 900;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--light-color);
    border: 2px solid var(--light-gray);
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-color);
    font-size: 0.95rem;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* ===== PROJELER LİSTESİ ===== */
.projects-list {
    background-color: var(--light-color);
    padding: 3rem 0;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

/* GÜNCELLENMİŞ PROJE KARTLARI - Detaylı */
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.project-header h3 {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.project-year {
    background-color: var(--light-color);
    color: var(--gray-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.map-pin {
    color: var(--secondary-color);
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: var(--transition);
}

.map-pin:hover {
    background-color: rgba(245, 158, 11, 0.1);
}

.project-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-top: 1px solid var(--light-gray);
    padding-top: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.spec-item i {
    width: 32px;
    height: 32px;
    background-color: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-color);
    margin-bottom: 0.125rem;
}

.spec-value {
    display: block;
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background-color: var(--light-color);
    color: var(--gray-color);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    border: 1px solid var(--light-gray);
}

.project-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.project-actions .btn {
    flex: 1;
    justify-content: center;
}

/* ===== NEDEN BİZ İÇERİK ===== */
.why-us-content {
    background-color: white;
}

.intro-text h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.intro-text p {
    color: var(--gray-color);
    font-size: 1.125rem;
    line-height: 1.8;
}

.reason-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.reason-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reason-card p {
    color: var(--gray-color);
    line-height: 1.6;
}

.additional-advantages {
    margin: 4rem 0;
}

.advantages-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.advantage-item i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
}

.advantage-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.advantage-item p {
    color: var(--gray-color);
    font-size: 0.95rem;
}

.conclusion {
    text-align: center;
    padding: 3rem;
    background-color: var(--light-color);
    border-radius: 0.5rem;
    margin-top: 4rem;
}

.conclusion h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.conclusion p {
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ===== SOSYALMEDYA BUTONU ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}
.instagram-btn {
    position: fixed;
    bottom: 10rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(131, 58, 180, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.instagram-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(131, 58, 180, 0.4);
}
.facebook-btn {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #1877F2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
    z-index: 999;
    transition: var(--transition);
}

.facebook-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(24, 119, 242, 0.4);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ===== İLETİŞİM BİLGİLERİ ===== */
.contact-info {
    background-color: white;
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--secondary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-card p {
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: #D97706;
    gap: 0.75rem;
}

.whatsapp-link {
    color: #25D366;
}

.whatsapp-link:hover {
    color: #1DA851;
}

/* ===== İLETİŞİM FORMU VE HARİTA ===== */
.contact-form-map {
    background-color: var(--light-color);
    padding: 4rem 0;
}

.form-map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper,
.map-wrapper {
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-form {
    margin-top: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 0.375rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    font-size: 0.875rem;
    margin-bottom: 0;
    cursor: pointer;
}

.form-message {
    padding: 1rem;
    border-radius: 0.375rem;
    margin-top: 1rem;
    display: none;
}

.form-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border: 1px solid var(--success-color);
}

.form-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    border: 1px solid var(--danger-color);
}

.map-container {
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info {
    margin-top: 1.5rem;
}

.location-info h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

/* ===== SIK SORULAN SORULAR ===== */
.faq-section {
    background-color: white;
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: var(--light-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.faq-item i {
    color: var(--secondary-color);
}

.faq-item p {
    color: var(--gray-color);
    margin-bottom: 0;
}

/* ===== PROJE İSTATİSTİKLERİ ===== */
.project-stats {
    background-color: white;
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stats-grid .stat-card {
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 0.5rem;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.stats-grid .stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.stats-grid .stat-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.stats-grid .stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stats-grid .stat-card p {
    color: var(--gray-color);
    font-weight: 500;
    margin-bottom: 0;
}

/* ===== MODAL İÇİN EK STİLLER ===== */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem;
}

.modal-content {
    background-color: white;
    max-width: 1000px;
    margin: 2rem auto;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10001;
    border: none;
    font-size: 1.25rem;
    transition: var(--transition);
}

.close-modal:hover {
    background: var(--secondary-color);
}

.close-modal-btn {
    cursor: pointer;
}

.modal-image-slider {
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #f5f5f5;
    margin-bottom: 20px;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
}

.slider-image.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Eski stil - kaldırılacak */
.slider-image:first-child {
    display: block;
}

/* Yeni stil - bu olacak */
.slider-image.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slider-nav {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.slider-nav {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 5;
}

.slider-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.modal-details {
    padding: 2rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.project-map {
    height: 200px;
    background-color: #f0f0f0;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    overflow: hidden;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 1rem;
}

.map-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 6px;
    background-color: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin: 1rem 0;
}

.progress-fill {
    height: 100%;
    background-color: var(--secondary-color);
    width: 0%;
    transition: width 1s ease;
}

.project-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 0.5rem;
}

.spec-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    border-radius: 0.5rem;
    border: 1px solid var(--light-gray);
}

.spec-card i {
    width: 40px;
    height: 40px;
    background-color: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.25rem;
}

.progress-section {
    margin: 1.5rem 0;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: var(--gray-color);
    font-weight: 500;
}

.project-features-section {
    margin: 1.5rem 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: var(--secondary-color);
}

.project-gallery {
    margin: 1.5rem 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.gallery-item {
    height: 100px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item.active {
    border-color: var(--secondary-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.project-status-badge.completed {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.project-status-badge.ongoing {
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
}

.project-status-badge.upcoming {
    background-color: rgba(107, 114, 128, 0.1);
    color: var(--gray-color);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* ===== ANİMASYONLAR ===== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .form-map-container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        margin-top: 1rem;
        gap: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        border-top: 1px solid var(--light-gray);
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem 0;
    }
    
    .nav-menu a.active::after {
        display: none;
    }
    
    .hero {
        padding: 6rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .projects-container {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    .project-specs {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .project-actions {
        flex-direction: column;
    }
    
    .project-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .form-map-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-modal {
        padding: 1rem;
    }
    
    .modal-content {
        margin: 1rem auto;
    }
    
    .modal-image-slider {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .reasons-grid,
    .values-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* ===== PROJELER SAYFASI ÖZEL DÜZELTMELER ===== */
.projects-section-wrapper {
    min-height: calc(100vh - 400px);
    position: relative;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Boş durum stili */
.no-projects {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--gray-color);
}

.no-projects i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.no-projects h3 {
    margin-bottom: 0.5rem;
    color: var(--gray-color);
}

/* Proje kartlarının yüksekliğini sabitle */
.project-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-description {
    flex-grow: 1;
}

/* Filtre butonları için düzenleme */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding-bottom: 0.5rem;
}

.filter-btn {
    min-width: fit-content;
}

/* Mobilde proje kartları düzeni */
@media (max-width: 768px) {
    .projects-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        margin-bottom: 0;
    }
    
    .projects-section-wrapper {
        min-height: calc(100vh - 350px);
    }
}

@media (max-width: 480px) {
    .projects-section-wrapper {
        min-height: calc(100vh - 300px);
    }
    
    .filter-buttons {
        justify-content: flex-start;
    }
}
/* ===== MOBİL UYUMLULUK İYİLEŞTİRMELERİ ===== */
/* Mevcut tasarımı bozmadan sadece mobil düzenlemeler */

/* 1. SOSYAL MEDYA BUTONLARI MOBİL */
@media (max-width: 768px) {
    .whatsapp-btn,
    .instagram-btn,
    .facebook-btn {
        position: fixed;
        z-index: 999;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.25rem !important;
        bottom: 1rem !important;
        right: 1rem !important;
        transition: all 0.3s ease;
    }
    
    .instagram-btn {
        bottom: 7rem !important;
        right: 1rem !important;
    }
    
    .facebook-btn {
        bottom: 4rem !important;
        right: 1rem !important;
    }
}

@media (max-width: 480px) {
    .whatsapp-btn,
    .instagram-btn,
    .facebook-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.125rem !important;
        bottom: 0.75rem !important;
        right: 0.75rem !important;
    }
    
    .instagram-btn {
        bottom: 6rem !important;
        right: 0.75rem !important;
    }
    
    .facebook-btn {
        bottom: 3.5rem !important;
        right: 0.75rem !important;
    }
}

/* 2. NAVBAR MOBİL DÜZENİ */
@media (max-width: 768px) {
    .navbar .logo img {
        max-height: 50px;
        width: auto;
        height: auto !important;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .menu-toggle {
        display: block !important;
    }
    
    .nav-menu li {
        width: 100%;
        border-top: 1px solid #f3f4f6;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem !important;
        width: 100%;
    }
    
    .nav-menu a.active::after {
        display: none;
    }
    
    .nav-menu a.active {
        background-color: #f3f4f6;
        color: #F59E0B;
    }
}

/* 3. HERO ALANI MOBİL */
@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 !important;
    }
    
    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.3;
        padding: 0 1rem;
    }
    
    .hero-text {
        font-size: 1rem !important;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 90%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
}

/* 4. İSTATİSTİKLER MOBİL */
@media (max-width: 768px) {
    .intro-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        padding: 0 1rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        padding: 0 1rem;
    }
    
    .stat h3,
    .stat-card h3,
    .about-stats .stat-card h3 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .intro-stats,
    .about-stats,
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
}

/* 5. PROJE KARTLARI MOBİL */
@media (max-width: 768px) {
    .projects-grid,
    .projects-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem;
    }
    
    .project-card {
        margin-bottom: 0 !important;
    }
    
    .project-image {
        height: 200px !important;
    }
    
    .project-specs {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
    
    .project-actions {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .project-actions .btn {
        width: 100% !important;
        justify-content: center;
    }
}

/* 6. GRID YAPILARI MOBİL */
@media (max-width: 768px) {
    .reasons-grid,
    .values-grid,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 1rem;
    }
    
    .form-map-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* 7. YAZI BOYUTLARI MOBİL */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem !important;
        padding: 0 1rem;
    }
    
    .page-title {
        font-size: 1.75rem !important;
        padding: 0 1rem;
    }
    
    .section-subtitle,
    .page-subtitle {
        font-size: 1rem !important;
        padding: 0 1rem;
    }
    
    .intro-text,
    .about-text {
        font-size: 1rem !important;
        line-height: 1.6;
        padding: 0 1rem;
    }
}

/* 8. CONTAINER VE PADDING MOBİL */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem !important;
    }
    
    section {
        padding: 3rem 0 !important;
    }
    
    .reason-card,
    .value-card,
    .contact-card,
    .stat-card {
        padding: 1.5rem !important;
    }
}

/* 9. FORMLAR MOBİL */
@media (max-width: 768px) {
    .contact-form-wrapper,
    .map-wrapper {
        padding: 1.5rem !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important; /* iOS'da zoom'u engeller */
    }
    
    .btn-block {
        padding: 1rem !important;
        font-size: 1rem !important;
    }
}

/* 10. MODAL MOBİL */
@media (max-width: 768px) {
    .project-modal {
        padding: 1rem !important;
    }
    
    .modal-content {
        margin: 0 !important;
        border-radius: 0 !important;
        min-height: 100vh;
    }
    
    .modal-image-slider {
        height: 250px !important;
    }
    
    .modal-details {
        padding: 1.5rem !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .modal-actions {
        flex-direction: column !important;
    }
    
    .modal-actions .btn {
        width: 100% !important;
        margin-bottom: 0.5rem;
    }
}

/* 11. ÖZEL DÜZELTMELER */
@media (max-width: 768px) {
    /* Boş kartları gizle */
    .reason-card:empty,
    .value-card:empty,
    .stat-card:empty {
        display: none !important;
    }
    
    /* Harita yüksekliği */
    .map-container iframe {
        height: 300px !important;
    }
    
    /* Logo boyutları footer'da */
    .footer-info img {
        height: 60px !important;
        width: auto !important;
    }
}

/* 12. DOKUNMA HEDEFLERİ (Touch Targets) */
@media (max-width: 768px) {
    .btn,
    .filter-btn,
    .contact-link,
    .footer-links a,
    .nav-menu a {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-dot,
    .gallery-item {
        min-width: 44px;
        min-height: 44px;
    }
}/* ===== MOBİL MENÜ STİLLERİ ===== */

/* Hamburger menü butonu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    transition: var(--transition);
}

.menu-toggle:hover {
    color: var(--secondary-color);
}

/* Mobil menü için */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        max-height: 500px;
        animation: menuSlideDown 0.3s ease-out;
    }
    
    @keyframes menuSlideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        width: 100%;
        font-size: 1rem;
        font-weight: 500;
        color: var(--dark-color);
        transition: var(--transition);
    }
    
    .nav-menu a:hover {
        background-color: var(--light-color);
        color: var(--secondary-color);
        padding-left: 2rem;
    }
    
    .nav-menu a.active {
        background-color: rgba(245, 158, 11, 0.1);
        color: var(--secondary-color);
        border-left: 4px solid var(--secondary-color);
    }
    
    .nav-menu a.active::after {
        display: none;
    }
    
    /* Menü açıkken sayfa kaydırmayı engelle */
    body.menu-open {
        overflow: hidden;
    }
}

/* Daha küçük mobil cihazlar */
@media (max-width: 480px) {
    .nav-menu a {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .menu-toggle {
        font-size: 1.25rem;
        padding: 0.25rem;
    }
}
/* style.css dosyasının sonuna ekleyin */

/* Modal için responsive düzenlemeler */
@media (max-width: 768px) {
    .modal-details {
        padding: 1.5rem;
    }
    
    .modal-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .project-subtitle {
        font-size: 1rem;
    }
    
    .project-specs-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1rem;
    }
    
    .spec-card {
        padding: 0.75rem;
    }
    
    .spec-card i {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .modal-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
        justify-content: center;
    }
}

/* Dokunma hedefleri için boyutlar */
@media (max-width: 768px) {
    .slider-dot,
    .gallery-item {
        min-height: 44px;
        min-width: 44px;
    }
    
    .slider-btn {
        width: 44px;
        height: 44px;
    }
    
    .tab-btn {
        min-height: 44px;
    }
}

/* Slider için mobil optimizasyonu */
@media (max-width: 768px) {
    .slider-image {
        object-fit: contain;
    }
}
/* ===== MOBİL MODAL DÜZENLEMELERİ ===== */
/* Detaylı incele modalı için mobil optimizasyon */

@media (max-width: 768px) {
    /* Slider'ı küçült */
    .modal-image-slider {
        height: 250px !important;
        margin-bottom: 15px;
    }
    
    .slider-image {
        object-fit: cover !important;
    }
    
    /* Modal içeriğini optimize et */
    .modal-details {
        padding: 1rem !important;
    }
    
    .modal-header {
        margin-bottom: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem !important;
        line-height: 1.3;
    }
    
    .project-subtitle {
        font-size: 0.9rem !important;
    }
    
    /* Project specs grid'i küçült */
    .project-specs-grid {
        padding: 1rem !important;
        gap: 0.75rem !important;
        margin: 1rem 0 !important;
    }
    
    .spec-card {
        padding: 0.75rem !important;
        gap: 0.75rem !important;
    }
    
    .spec-card i {
        width: 32px !important;
        height: 32px !important;
        font-size: 1rem !important;
    }
    
    .spec-label {
        font-size: 0.7rem !important;
    }
    
    .spec-value {
        font-size: 0.85rem !important;
    }
    
    /* Daire planları mobil düzeni */
    .plan-compact {
        flex-direction: column !important;
        padding: 15px !important;
        gap: 15px !important;
    }
    
    .plan-image-compact {
        flex: 0 0 auto !important;
        width: 100% !important;
    }
    
    .plan-image-compact img {
        height: 120px !important;
        border-width: 1px !important;
    }
    
    .plan-details-compact h4 {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
    
    .plan-size-compact {
        padding: 5px 10px !important;
        font-size: 12px !important;
        margin-bottom: 10px !important;
    }
    
    .features-grid-compact {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }
    
    .feature-item-compact {
        padding: 6px 8px !important;
        font-size: 12px !important;
    }
    
    /* Tab butonları mobil */
    .tabs-header {
        overflow-x: auto !important;
        padding-bottom: 8px !important;
        margin-bottom: 15px !important;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap !important;
        gap: 8px !important;
    }
    
    .tab-btn {
        padding: 8px 15px !important;
        font-size: 12px !important;
        white-space: nowrap !important;
        min-height: 44px;
        display: inline-flex !important;
        flex-shrink: 0 !important;
    }
    
    /* Features list */
    .features-list {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }
    
    .feature-item {
        font-size: 0.85rem !important;
        gap: 8px !important;
    }
    
    /* Galeri grid */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 5px !important;
    }
    
    .gallery-item {
        height: 70px !important;
    }
    
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Modal actions */
    .modal-actions {
        flex-direction: column !important;
        gap: 10px !important;
        margin-top: 1.5rem !important;
    }
    
    .modal-actions .btn {
        width: 100% !important;
        padding: 12px !important;
        font-size: 14px !important;
        justify-content: center;
    }
    
    /* Plan viewer mobil */
    .plan-viewer-content {
        padding: 15px !important;
        width: 98% !important;
        max-height: 90vh !important;
    }
    
    .plan-viewer-image img {
        max-height: 300px !important;
    }
    
    .viewer-actions {
        flex-direction: column !important;
    }
    
    .viewer-actions .btn {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    /* Daha küçük ekranlar için ek ayarlamalar */
    .modal-image-slider {
        height: 200px !important;
    }
    
    .modal-header h2 {
        font-size: 1.2rem !important;
    }
    
    .project-description {
        font-size: 0.9rem !important;
    }
    
    .plan-image-compact img {
        height: 100px !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .gallery-item {
        height: 60px !important;
    }
    
    .tab-btn {
        padding: 6px 12px !important;
        font-size: 11px !important;
    }
}

/* ===== MOBİL MODAL SLIDER NOKTA DÜZENLEMESİ ===== */
@media (max-width: 768px) {
    /* Slider noktalarını küçült */
    .slider-nav {
        bottom: 8px !important;
    }
    
    .slider-dot {
        width: 6px !important;
        height: 6px !important;
        margin: 0 3px !important;
        background-color: rgba(255, 255, 255, 0.6) !important;
    }
    
    .slider-dot.active {
        background-color: #F59E0B !important;
        transform: scale(1.2) !important;
    }
    
    /* Slider butonlarını küçült */
    .slider-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 12px !important;
        padding: 0 !important;
    }
    
    /* Modal slider yüksekliği */
    .modal-image-slider {
        height: 220px !important;
    }
    
    /* Modal içeriği */
    .modal-details {
        padding: 1rem !important;
        font-size: 14px !important;
    }
    
    .modal-header h2 {
        font-size: 1.2rem !important;
        margin-bottom: 5px !important;
    }
    
    /* Daire planları mobil */
    .plan-compact {
        padding: 12px !important;
        gap: 12px !important;
    }
    
    .plan-image-compact img {
        height: 110px !important;
    }
    
    /* Tab butonları */
    .tabs-header {
        gap: 6px !important;
        margin-bottom: 15px !important;
    }
    
    .tab-btn {
        padding: 8px 12px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 480px) {
    .slider-dot {
        width: 5px !important;
        height: 5px !important;
        margin: 0 2px !important;
    }
    
    .modal-image-slider {
        height: 180px !important;
    }
    
    .modal-header h2 {
        font-size: 1.1rem !important;
    }
    
    .plan-image-compact img {
        height: 90px !important;
    }
    
    .tab-btn {
        padding: 6px 10px !important;
        font-size: 10px !important;
    }
}

/* Slider noktaları için genel küçültme */
.slider-dot {
    transition: all 0.3s ease;
}

.slider-dot:hover {
    transform: scale(1.3);
}

/* Galeri küçük resimleri */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 5px !important;
    }
    
    .gallery-item {
        height: 65px !important;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .gallery-item {
        height: 55px !important;
    }
}
