/* ===== GENEL AYARLAR ===== */
:root {
    --primary-color: #0D1D1E; /* Koyu renk */
    --secondary-color: #D4C6A8; /* Açık/aksan renk */
    --accent-color: #A39070; /* Secondary color'un biraz daha koyu versiyonu */
    --light-color: #F4F1EA; /* Açık background için */
    --dark-color: #0D1D1E; /* Koyu text için */
    --text-color: #333;
    --bg-color: #fff;
    
    /* Modern Clean Color Scheme - Sade ve Şık */
    --modern-primary: #2c3e50;     /* Koyu mavi-gri */
    --modern-secondary: #3498db;   /* Açık mavi */
    --modern-accent: #5dade2;      /* Açık mavi accent */
    --modern-light: #bdc3c7;      /* Açık gri */
    --modern-dark: #34495e;       /* Koyu gri */
    --modern-bg: #f8f9fa;         /* Çok açık gri arka plan */
    --modern-card: #ffffff;       /* Beyaz kartlar */
    --modern-text: #2c3e50;       /* Koyu metin */
    --modern-text-light: #7f8c8d; /* Açık gri metin */
    
    --header-height: 100px; /* Increased from 70px */
    --top-bar-height: 40px;
    --section-padding: 80px 0;
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --shadow-primary: 0 15px 35px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 45px rgba(0, 0, 0, 0.15);
}

/* Google Fonts import for Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden; /* Yatay taşmaları engelle */
    width: 100%;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    box-sizing: border-box; /* Padding'in genişliğe eklenmemesini sağlar */
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    background-color: var(--modern-secondary);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--modern-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--modern-secondary);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid var(--modern-secondary);
    cursor: pointer;
}

.btn-outline:hover {
    background-color: var(--modern-secondary);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--modern-primary);
    position: relative;
    display: inline-block;
    letter-spacing: -0.01em;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--modern-secondary);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #777;
    font-size: 1rem;
}

/* ===== ÜST BİLGİ ŞERİDİ ===== */
.top-bar {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    height: var(--top-bar-height);
    line-height: var(--top-bar-height);
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.contact-info {
    display: flex;
}

.contact-info a {
    font-weight: bold;
    margin-right: 20px;
    color: var(--primary-color);
}

.contact-info a:hover {
    color: var(--secondary-color);
}

.contact-info a i {
    font-weight: bold;
    margin-right: 5px;
}

.social-links a {
    font-weight: bold;
    color: var(--primary-color);
}

.social-links a:hover {
    color: var(--secondary-color);
}

.social-links a i {
    font-size: 15px;
    margin-right: 5px;
}

/* ===== MODERN HEADER TASARIMI ===== */
.header.new-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding-top: 24px;
    padding-bottom: 0;
    border-bottom: 1px solid #ececec;
    width: 100%;
}
.header-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    min-height: 110px;
}
.logo-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
}
.logo-block .logo img {
    height: 64px;
    width: auto;
    display: block;
}
.logo-underline {
    width: 80px;
    height: 3px;
    background: var(--secondary-color, #D4C6A8);
    border-radius: 2px;
    margin-top: 8px;
}
.header-social {
    display: flex;
    align-items: center;
    gap: 16px;
}
.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #f4f6fa;
    border-radius: 50%;
    color: #234;
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s;
}
.social-circle:hover {
    background: var(--secondary-color, #D4C6A8);
    color: #fff;
}
.header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color, #0D1D1E);
    background: #f4f6fa;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-label {
    font-size: 0.95rem;
    color: #888;
    font-weight: 500;
    display: block;
}
.contact-value {
    font-size: 1.08rem;
    color: var(--primary-color, #0D1D1E);
    font-weight: 600;
    display: block;
    letter-spacing: 0.01em;
}
.contact-divider {
    width: 1px;
    height: 38px;
    background: #ececec;
    margin: 0 10px;
}
/* Menü */
.navigation.new-nav {
    background: transparent;
    box-shadow: none;
    margin-top: 18px;
    padding: 0;
    display: flex;
    justify-content: center;
}
.navigation.new-nav .menu {
    display: flex;
    gap: 48px;
    justify-content: center;
    align-items: center;
}
.navigation.new-nav .menu li a {
    color: var(--primary-color, #0D1D1E);
    font-size: 1.13rem;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: border 0.2s, color 0.2s;
}
.navigation.new-nav .menu li a.active,
.navigation.new-nav .menu li a:hover {
    color: var(--secondary-color, #D4C6A8);
    border-bottom: 2px solid var(--secondary-color, #D4C6A8);
}
@media (max-width: 992px) {
    .header-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
        min-height: unset;
    }
    .header-contact {
        justify-content: flex-end;
    }
    .logo-block {
        align-items: flex-start;
        min-width: 0;
    }
    .navigation.new-nav .menu {
        gap: 28px;
    }
}
@media (max-width: 600px) {
    .header-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .logo-block .logo img {
        height: 48px;
    }
    .logo-underline {
        width: 48px;
        height: 2px;
        margin-top: 5px;
    }
    .header-social {
        gap: 10px;
    }
    .header-contact {
        gap: 10px;
    }
    .contact-item i {
        font-size: 1.1rem;
        width: 28px;
        height: 28px;
    }
    .navigation.new-nav .menu {
        gap: 12px;
    }
    .navigation.new-nav .menu li a {
        font-size: 1rem;
        padding: 6px 0;
    }
}

/* ===== HEADER ===== */
.header {
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
    width: 100%;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.logo img {
    height: 160px; /* Increased from 120px */
    width: auto;
    max-width: 100%;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.navigation {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    height: 100%;
    align-items: center;
}

.menu li {
    margin-left: 25px;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.menu li a {
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #fff;
    padding: 10px 0;
    position: relative;
}

.menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.menu li a:hover::after,
.menu li a.active::after {
    width: 100%;
}

.menu li a:hover,
.menu li a.active {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* ===== SLIDER ===== */
.slider-section {
    position: relative;
    height: calc(100vh - var(--header-height) - var(--top-bar-height));
    min-height: 500px;
    overflow: hidden;
    margin-bottom: 0; /* Remove any bottom margin */
}

/* ===== BANNER SECTION ===== */
.banner-section {
    position: relative;
    padding: 0;
    margin-top: 0;
    z-index: 10;
}

/* ===== SLIDER BANNER WITH WAVE DIVIDER ===== */
.slider-banner-wave {
    position: relative;
    padding: 0;
    margin-top: -5px; /* Small negative margin to avoid white gap */
    z-index: 10;
}

.banner-wave-divider {
    position: absolute;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.banner-wave-divider.top-wave {
    top: 0;
    transform: rotate(180deg);
}

.banner-wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.banner-wave-divider .shape-fill {
    fill: var(--primary-color);
}

.banner-content-container {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.banner-content-container .container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.banner-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    position: relative;
    letter-spacing: -0.01em;
}

.banner-content p {
    font-size: 1.1rem;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.banner-cta {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 25px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.banner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .banner-content-container {
        padding: 50px 0;
    }

    .banner-content-container .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .banner-content h2 {
        font-size: 2.2rem;
    }

    .banner-content p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .banner-cta {
        align-self: flex-start;
    }
    
    .features {
        padding-top: 70px;
    }
}

@media (max-width: 768px) {
    .banner-wave-divider svg {
        height: 40px;
    }

    .banner-content-container {
        padding: 40px 0;
    }

    .banner-content h2 {
        font-size: 2rem;
    }
    
    .slider-section {
        height: 450px;
    }
    
    .features {
        padding-top: 60px;
    }
}

@media (max-width: 576px) {
    .banner-wave-divider svg {
        height: 30px;
    }

    .banner-content-container {
        padding: 30px 0;
    }

    .banner-content h2 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }
    
    .slider-section {
        height: 400px;
    }
    
    .features {
        padding-top: 50px;
    }
}

/* Original slider-banner styles preserved for reference but now overridden by the new design */
.slider-banner {
    /* original styles kept but not used anymore */
    display: none;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    text-align: center;
    max-width: 800px;
    padding: 40px;
    color: #fff;
    z-index: 1;
    border-left: 5px solid var(--secondary-color);
    background: rgba(13, 29, 30, 0.8);
    border-radius: 0 10px 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
    color: var(--secondary-color);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.7s;
}

.slide-content .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.9s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    bottom: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.slider-nav button {
    background-color: rgba(212, 198, 168, 0.7);
    color: var(--dark-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav button:hover {
    background-color: var(--secondary-color);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
    background: rgba(13, 29, 30, 0.4);
    padding: 10px 20px;
    border-radius: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* ===== ÖZELLİKLER BÖLÜMÜ ===== */
.features {
    padding: var(--section-padding);
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.features .container {
    position: relative;
    z-index: 2;
}

.features .section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.features .section-title h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.8rem;
    letter-spacing: -0.02em;
}

.features .section-title p {
    color: #666;
    font-weight: 400;
    font-size: 1.1rem;
    margin-top: 15px;
}

.feature-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature-card .icon {
    font-size: 2.8rem;
    color: var(--modern-primary);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--modern-primary);
    font-weight: 600;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
}

/* ===== PROJELER ÖNİZLEME ===== */
.projects-preview {
    padding: var(--section-padding);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.project-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-info {
    padding: 25px;
    text-align: center;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--modern-primary);
}

.project-info p {
    color: #777;
    margin-bottom: 20px;
}

.view-all {
    text-align: center;
}

/* ===== İLETİŞİM SAYFASI TASARIMI ===== */
.contact-page {
    padding: var(--section-padding);
    background: var(--modern-bg);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-page-info {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-page-info h3 {
    font-size: 1.8rem;
    color: var(--modern-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-page-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-page-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--modern-bg);
}

.contact-page-item:hover {
    transform: translateX(10px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-page-item i {
    font-size: 1.8rem;
    color: var(--modern-secondary);
    background: rgba(52, 152, 219, 0.1);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-page-item:hover i {
    background: var(--modern-secondary);
    color: white;
    transform: scale(1.1);
}

.contact-page-item-content h4 {
    font-size: 1.2rem;
    color: var(--modern-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-page-item-content p,
.contact-page-item-content a {
    color: var(--modern-text-light);
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-page-item-content a:hover {
    color: var(--modern-secondary);
}

.contact-page-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-page-form h3 {
    font-size: 1.8rem;
    color: var(--modern-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--modern-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--modern-text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--modern-secondary);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

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

.contact-page-map {
    position: relative;
}

.contact-page-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .contact-page-map {
        margin-bottom: 30px;
    }
    .contact-page-map iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-page-map {
        margin-bottom: 20px;
    }
    .contact-page-map iframe {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-page-info,
    .contact-page-form {
        padding: 30px;
    }
    
    .contact-page-info h3,
    .contact-page-form h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .contact-page-item {
        padding: 15px;
    }
    
    .contact-page-item i {
        font-size: 1.5rem;
        padding: 12px;
    }
    
    .contact-page-item-content h4 {
        font-size: 1.1rem;
    }
    
    .contact-page-map {
        margin-top: 40px;
    }
    
    .contact-page-map iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 30px 0;
    }
    
    .contact-page-info,
    .contact-page-form {
        padding: 20px;
    }
    
    .contact-page-info h3,
    .contact-page-form h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .contact-page-item {
        padding: 12px;
    }
    
    .contact-page-item i {
        font-size: 1.3rem;
        padding: 10px;
    }
    
    .contact-page-item-content h4 {
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .contact-page-map {
        margin-top: 30px;
    }
    
    .contact-page-map iframe {
        height: 250px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: #fff;
    padding-top: 80px;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-logo img {
    height: 65px;
    width: auto;
    margin-bottom: 15px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    margin-right: 10px;
    color: var(--secondary-color);
}

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

.social-media a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-media a:hover {
    background-color: var(--modern-secondary);
    transform: translateY(-5px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ===== HİZMETLERİMİZ BÖLÜMÜ ===== */
.services-section {
    padding: var(--section-padding);
    background-color: #f7f9fc;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 50%;
    transform: translate(150px, -150px);
    z-index: 0;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-color: rgba(52, 152, 219, 0.05);
    border-radius: 50%;
    transform: translate(-100px, 100px);
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--modern-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 29, 30, 0.2), rgba(13, 29, 30, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.btn-service {
    background-color: var(--modern-secondary);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--modern-secondary);
    letter-spacing: 0.03em;
}

.btn-service:hover {
    background-color: transparent;
    color: #fff;
}

.service-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--modern-secondary);
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--modern-primary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--modern-secondary);
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--modern-secondary);
    font-weight: 500;
    transition: var(--transition);
    margin-top: auto;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--modern-primary);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 1200px) {
    .slider-banner {
        max-width: 100%;
        padding: 30px;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }

    .menu-toggle {
        display: block;
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        padding: 6px;
        border-radius: 6px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.15);
        font-size: 1.2rem;
    }

    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
        border-color: rgba(255, 255, 255, 0.25);
    }

    .navigation {
        position: fixed;
        top: calc(var(--header-height) + var(--top-bar-height));
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        box-shadow: 0 8px 25px rgba(44, 62, 80, 0.12);
        padding: 20px 0;
        transform: translateY(-150%);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        backdrop-filter: blur(15px);
        border-bottom: 2px solid var(--modern-secondary);
    }

    .navigation.active {
        transform: translateY(0);
        animation: slideInMenu 0.3s ease-out;
    }

    .menu {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .menu li {
        margin: 3px 0;
        width: 100%;
        max-width: 180px;
        text-align: center;
    }

    .menu li a {
        display: block;
        color: var(--modern-text) !important;
        font-weight: 500;
        font-size: 0.95rem;
        padding: 10px 18px;
        border-radius: 8px;
        background: rgba(52, 152, 219, 0.04);
        border: 1px solid transparent;
        transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        letter-spacing: 0.2px;
    }

    .menu li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.08), transparent);
        transition: left 0.4s;
    }

    .menu li a:hover::before {
        left: 100%;
    }

    .menu li a:hover,
    .menu li a.active {
        color: #ffffff !important;
        background: linear-gradient(135deg, var(--modern-secondary), var(--modern-primary));
        border-color: rgba(52, 152, 219, 0.2);
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(52, 152, 219, 0.2);
    }

    .menu li a::after {
        display: none;
    }

    .slider-section {
        height: 500px;
    }

    .slider-banner {
        bottom: -35px;
        padding: 30px;
        clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
    }

    .banner-logo {
        width: 120px;
        height: 120px;
        right: 30px;
    }

    .features {
        padding-top: 70px; /* Tablet için banner boşluğu ayarlandı */
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 0.95rem;
    }

    .banner-cta {
        padding: 12px 25px;
    }

    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .contact-preview-content {
        flex-direction: column;
    }

    .contact-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .about-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-text-wrapper {
        padding-right: 0;
        max-width: 100%;
    }
    
    .section-title.text-left h2 {
        font-size: 2rem;
    }
    
    .features::before {
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .feature-card {
        min-width: calc(50% - 15px);
        padding: 35px 25px;
    }
    
    .feature-card .icon {
        font-size: 3.2rem;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --header-height: 70px;
    }

    .top-bar {
        display: none;
    }

    .menu-toggle {
        font-size: 1.1rem;
        padding: 7px;
        border-radius: 7px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.22);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .navigation {
        top: var(--header-height); /* top-bar yok artık */
        padding: 22px 0;
        border-bottom: 2px solid var(--modern-secondary);
        box-shadow: 0 10px 30px rgba(44, 62, 80, 0.15);
    }

    .menu li {
        margin: 4px 0;
        max-width: 200px;
    }

    .menu li a {
        font-size: 0.9rem;
        padding: 9px 20px;
        border-radius: 7px;
        background: rgba(52, 152, 219, 0.05);
        font-weight: 500;
    }

    .menu li a:hover,
    .menu li a.active {
        box-shadow: 0 8px 20px rgba(52, 152, 219, 0.22);
    }

    .logo img {
        height: 100px;
    }

    .slider-section {
        height: 400px;
    }

    .slider-banner {
        bottom: -30px;
        padding: 25px;
        clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%);
    }

    .banner-logo {
        width: 100px;
        height: 100px;
        right: 25px;
    }

    .features {
        padding-top: 60px; /* Küçük tablet için banner boşluğu ayarlandı */
    }

    .banner-content h2 {
        font-size: 1.8rem;
    }

    .banner-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .banner-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .feature-cards {
        flex-direction: column;
        gap: 25px;
    }

    .feature-card {
        min-width: 100%;
        padding: 30px 20px;
    }

    .feature-card .icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .feature-card .icon::after {
        width: 65px;
        height: 65px;
    }

    .feature-card h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    .feature-card:hover {
        transform: translateY(-8px);
    }

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

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

    .about-description {
        font-size: 1rem;
    }
    
    .section-title.text-left h2 {
        font-size: 1.8rem;
    }
    
    .features::before {
        background-color: rgba(255, 255, 255, 0.92);
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .slider-section {
        height: 450px;
    }

    .slider-banner {
        bottom: -25px;
        padding: 20px;
        clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
    }

    .banner-logo {
        width: 80px;
        height: 80px;
        right: 15px;
    }

    .features {
        padding-top: 50px; /* Mobil için banner boşluğu ayarlandı */
    }

    .banner-content h2 {
        font-size: 1.6rem;
    }

    .banner-content p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .banner-cta {
        padding: 10px 18px;
        font-size: 0.85rem;
        margin-top: 15px;
    }

    .slide-content h2 {
        font-size: 1.8rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .slider-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .features .section-title h2 {
        font-size: 2.2rem;
    }
    
    .features .section-title p {
        font-size: 1rem;
    }
    
    .features::before {
        background-color: rgba(255, 255, 255, 0.94);
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-card .icon {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .feature-card .icon::after {
        width: 60px;
        height: 60px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .menu-toggle {
        font-size: 1rem;
        padding: 8px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.35);
    }

    .navigation {
        padding: 25px 0;
        border-bottom: 3px solid var(--modern-secondary);
        box-shadow: 0 12px 35px rgba(44, 62, 80, 0.18);
    }

    .menu li {
        margin: 5px 0;
        max-width: 220px;
    }

    .menu li a {
        font-size: 0.85rem;
        padding: 8px 22px;
        border-radius: 6px;
        font-weight: 500;
        background: rgba(52, 152, 219, 0.06);
        letter-spacing: 0.1px;
    }

    .menu li a:hover,
    .menu li a.active {
        transform: translateY(-1px) scale(1.01);
        box-shadow: 0 10px 25px rgba(52, 152, 219, 0.25);
    }
}

/* ===== SAYFA BAŞLIĞI ===== */
.page-header {
    background-color: var(--primary-color);
    color: #fff;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(150px, -150px);
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: #fff;
}

.breadcrumbs span {
    color: var(--secondary-color);
}

/* ===== HAZIRLANMA SAYFASI ===== */
.services-page {
    padding: var(--section-padding);
}

.coming-soon {
    text-align: center;
    font-size: 1.2rem;
    color: #777;
    margin-top: 40px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

/* Typography adjustments for Montserrat */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p {
    font-weight: 400;
    letter-spacing: 0.01em;
}

.btn, .btn-outline, .btn-service {
    font-weight: 500;
    letter-spacing: 0.03em;
}

/* ===== BİZ KİMİZ BÖLÜMÜ ===== */
.about-preview {
    padding: var(--section-padding);
    position: relative;
    background-color: var(--light-color);
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(255, 255, 255, 0.7);
}

.bg-shape {
    position: absolute;
    z-index: 0;
}

.bg-shape-primary {
    width: 300px;
    height: 300px;
    background-color: rgba(13, 29, 30, 0.04);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.bg-shape-secondary {
    width: 400px;
    height: 400px;
    background-color: rgba(212, 198, 168, 0.08);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-text-wrapper {
    flex: 1;
    max-width: 600px;
    padding-right: 40px;
    position: relative;
}

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

.section-title.text-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 1px;
    padding-bottom: 15px;
}

.section-title.text-left h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 0;
    transform: none;
}

.about-description {
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #555;
}

.about-image {
    flex: 1;
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.image-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--secondary-color);
    border-radius: 10px;
    z-index: -1;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* Dalgalı bölüm geçişleri */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-divider .shape-fill {
    fill: #FFFFFF;
}

.wave-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.wave-divider-top .shape-fill {
    fill: #FFFFFF;
}

/* Scroll-to-top butonu */
.scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--modern-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
    bottom: 30px;
}

.scroll-top:hover {
    background-color: var(--modern-primary);
    transform: translateY(-5px);
}

/* Responsive Scroll to Top Button */
@media (max-width: 767px) {
    .scroll-top {
        width: 45px;
        height: 45px;
        right: 20px;
        bottom: 20px;
        font-size: 0.9rem;
    }
    
    .scroll-top.active {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .scroll-top {
        width: 40px;
        height: 40px;
        right: 15px;
        bottom: 15px;
        font-size: 0.85rem;
    }
    
    .scroll-top.active {
        bottom: 15px;
    }
}

/* Modern divider */
.divider {
    height: 3px;
    width: 100%;
    margin: 80px 0;
    position: relative;
    background: #f5f5f5;
}

.divider::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.divider.animated::before {
    animation: divider-animate 3s infinite alternate-reverse;
}

@keyframes divider-animate {
    0% {
        left: 0;
        transform: translateX(0);
    }
    100% {
        left: 100%;
        transform: translateX(-100%);
    }
}

/* Features section background shapes */
.features .bg-shape-1 {
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.32;
}

.features .bg-shape-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.22;
}

/* Project section background shapes */
.projects-preview .bg-shape-2 {
    top: 50%;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.32;
}

/* Services section background shapes */
.services-section .bg-shape-1 {
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.32;
}

.services-section .bg-shape-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.22;
}

/* Ekran genişliği 767px ve altında olan cihazlar için düzenleme */
@media (max-width: 767px) {
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Ekran genişliği 480px ve altında olan cihazlar için düzenleme */
@media (max-width: 480px) {
    .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .scroll-top.active {
        bottom: 15px;
    }
}

.features .section-title {
    position: relative;
    z-index: 2;
}

.features .section-title h2 {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.features .section-title p {
    color: #333;
    font-weight: 500;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
}

/* Responsive Styles for About Section */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .about-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-text-wrapper {
        padding-right: 0;
        max-width: 100%;
    }
    
    .section-title.text-left h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-description {
        font-size: 1rem;
    }
    
    .section-title.text-left h2 {
        font-size: 1.8rem;
    }
    
    .image-border {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }
}

@media (max-width: 576px) {
    .about-content {
        gap: 30px;
    }
    
    .section-title.text-left h2 {
        font-size: 1.6rem;
    }
    
    .section-title.text-left h2::after {
        width: 60px;
    }
    
    .image-border {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
        border-width: 2px;
    }
}

/* ===== MODERN BİZ KİMİZ (HAKKIMIZDA) TASARIMI ===== */
.about-modern {
    position: relative;
    background: #fff;
    padding: 80px 0 60px 0;
    overflow: hidden;
}

.about-modern::before {
    display: none;
}

.about-modern-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.about-modern-media {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 320px;
}

.about-modern-images {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 420px;
}

.about-modern-img-row {
    display: flex;
    gap: 18px;
    width: 100%;
    position: relative;
}

.about-modern-img {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    object-fit: cover;
    background: #eee;
}

.main-img {
    width: 60%;
    height: 260px;
}

.side-img {
    width: 40%;
    height: 260px;
}

.bottom-img {
    width: 100%;
    height: 110px;
}

.about-modern-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    border: 6px solid #fff;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.about-modern-play i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.about-modern-play:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.about-modern-content {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
    max-width: 600px;
}

.about-modern-label {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-modern-label i {
    font-size: 1.1rem;
}

.about-modern-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 60px;
    margin-bottom: 22px;
    line-height: 1.12;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,0.10);
    position: relative;
    z-index: 2;
}

.about-modern-title span {
    color: var(--secondary-color);
    background: linear-gradient(90deg, var(--secondary-color), #a39070 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    font-weight: 900;
    letter-spacing: 0.07em;
}

.about-modern-desc {
    color: #666;
    font-size: 1.13rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.about-modern-infos {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-modern-info {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.about-modern-info-icon {
    background: linear-gradient(135deg, var(--modern-secondary), var(--modern-primary));
    border-radius: 12px;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-modern-info-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--modern-primary);
    margin-bottom: 6px;
}

.about-modern-info-desc {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .about-modern-container {
        flex-direction: column;
        gap: 40px;
    }
    .about-modern-media, .about-modern-content {
        min-width: 0;
        max-width: 100%;
    }
    .about-modern-media {
        align-items: flex-start;
    }
}

@media (max-width: 700px) {
    .about-modern {
        padding: 40px 0 30px 0;
    }
    .about-modern-title {
        margin-top: 40px;
    }
    .about-modern-desc {
        font-size: 1rem;
    }
    .about-modern-info-title {
        font-size: 1rem;
    }
    .about-modern-info-desc {
        font-size: 0.95rem;
    }
    .main-img, .side-img {
        height: 140px;
    }
    .bottom-img {
        height: 60px;
    }
    .about-modern-play {
        width: 48px;
        height: 48px;
        border-width: 3px;
    }
    .about-modern-play i {
        font-size: 1.2rem;
    }
}

/* ===== MODERN PROJELERİMİZ TASARIMI ===== */
.modern-projects {
    background: #f8f9fa;
    position: relative;
    padding-bottom: 60px;
}

.modern-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
    margin-bottom: 40px;
}

.modern-project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    position: relative;
}

.modern-project-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.16);
    transform: translateY(-8px) scale(1.02);
}

.modern-project-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.modern-project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.modern-project-overlay {
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(13,29,30,0.10) 60%, rgba(212,198,168,0.13) 100%);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 28px 24px 20px 24px;
    opacity: 1;
    pointer-events: none;
    z-index: 2;
    transition: background 0.3s;
}

.modern-project-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--modern-primary);
    background: rgba(255,255,255,0.85);
    padding: 6px 18px;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    pointer-events: auto;
}

.modern-project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--modern-secondary);
    color: white;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.2);
    margin-bottom: 6px;
    margin-left: 2px;
    pointer-events: auto;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.modern-project-btn:hover {
    background: var(--modern-primary);
    color: #fff;
    transform: scale(1.12);
}

.modern-project-info {
    padding: 28px 24px 22px 24px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    font-size: 1.08rem;
    color: #555;
    font-weight: 500;
}

@media (max-width: 700px) {
    .modern-projects-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .modern-project-image {
        height: 160px;
    }
    .modern-project-info {
        padding: 18px 12px 14px 12px;
        font-size: 0.98rem;
    }
    .modern-project-title {
        font-size: 1.1rem;
        padding: 5px 12px;
    }
    .modern-project-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
}

.modern-divider {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%,
        var(--secondary-color) 50%,
        var(--primary-color) 100%
    );
    margin: 0;
    position: relative;
    overflow: hidden;
}

.modern-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Remove old wave divider styles */
.wave-divider,
.wave-divider-top,
.banner-wave-divider {
    display: none;
}

.features-bg-geo .geo-shape {
    opacity: 1 !important;
}

.features-bg-geo .geo-circle2,
.features-bg-geo .geo-polygon,
.features-bg-geo .geo-rect {
    opacity: 1 !important;
}

.modern-divider svg path {
    fill-opacity: 1 !important;
}

/* ===== MODERN OUTLINE BAŞLIK ===== */
.section-title-modern {
    position: relative;
    text-align: left;
    margin-bottom: 48px;
    z-index: 2;
}

.section-title-outline {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 6vw;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(13, 29, 30, 0.07);
    text-stroke: 2px rgba(13, 29, 30, 0.07);
    pointer-events: none;
    user-select: none;
    z-index: 1;
    white-space: nowrap;
    line-height: 1;
}

.section-title-modern h2 {
    position: relative;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    z-index: 2;
    margin: 0;
    padding: 0 0 0.2em 0;
    display: inline-block;
    letter-spacing: -0.01em;
    background: none;
    text-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

@media (max-width: 700px) {
    .section-title-outline {
        font-size: 12vw;
    }
    .section-title-modern h2 {
        font-size: 1.5rem;
    }
}

/* ===== MODERN NEDEN BİZ TASARIMI ===== */
.modern-neden-biz {
    padding: 100px 0;
    background: url('../images/villa.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.modern-neden-biz::before {
    display: none;
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 3;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.35;
    animation: float 20s infinite;
    pointer-events: none;
    width: 300px;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.2));
}

.shape-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    width: 140px;
}

.shape-2 {
    top: 65%;
    left: 85%;
    animation-delay: -5s;
    width: 130px;
}

.shape-3 {
    top: 35%;
    left: 75%;
    animation-delay: -10s;
    width: 150px;
}

.shape-4 {
    top: 75%;
    left: 15%;
    animation-delay: -15s;
    width: 125px;
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    33% {
        transform: translate(-50%, -60%) rotate(3deg);
    }
    66% {
        transform: translate(-50%, -40%) rotate(-3deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.nedenbiz-flex {
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.nedenbiz-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.nedenbiz-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    border-left: 3px solid var(--secondary-color);
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 0 12px 12px 0;
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.nedenbiz-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.nedenbiz-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    background: rgba(212, 198, 168, 0.2);
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.nedenbiz-item:hover .nedenbiz-icon {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.nedenbiz-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.nedenbiz-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.section-title-modern h2 {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-title-outline {
    -webkit-text-stroke: 2px rgba(13, 29, 30, 0.1);
    text-stroke: 2px rgba(13, 29, 30, 0.1);
}

@media (max-width: 992px) {
    .nedenbiz-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .nedenbiz-item {
        padding: 25px;
    }
    
    .nedenbiz-icon {
        font-size: 2.2rem;
        padding: 18px;
    }
    
    .nedenbiz-text h3 {
        font-size: 1.3rem;
    }
    
    .nedenbiz-text p {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .modern-neden-biz {
        padding: 60px 0;
    }
    
    .nedenbiz-flex {
        gap: 40px;
    }
    
    .nedenbiz-content {
        gap: 25px;
    }
    
    .nedenbiz-item {
        padding: 20px;
        gap: 20px;
    }
    
    .nedenbiz-icon {
        font-size: 2rem;
        padding: 15px;
    }
    
    .nedenbiz-text h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .nedenbiz-text p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

@media (max-width: 576px) {
    .modern-neden-biz {
        padding: 40px 0;
    }
    
    .nedenbiz-flex {
        gap: 30px;
    }
    
    .nedenbiz-content {
        gap: 20px;
        padding: 0 15px;
    }
    
    .nedenbiz-item {
        padding: 15px;
        gap: 15px;
        border-left-width: 2px;
    }
    
    .nedenbiz-icon {
        font-size: 1.8rem;
        padding: 12px;
    }
    
    .nedenbiz-text h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .nedenbiz-text p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
} 

.slider-banner-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(13, 29, 30, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    z-index: 10;
    padding: 40px 50px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slogan-container {
    position: relative;
}

.slogan-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--modern-secondary);
    border-radius: 2px;
}

.main-slogan {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.sub-slogan {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.banner-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--modern-secondary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.banner-cta-button:hover {
    background: var(--modern-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.banner-cta-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.banner-cta-button:hover i {
    transform: translateX(2px);
}



@media (max-width: 1200px) {
    .slider-banner-overlay {
        bottom: 60px;
        padding: 35px 40px;
    }
    .main-slogan {
        font-size: 2.2rem;
    }
    .sub-slogan {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .slider-banner-overlay {
        bottom: 50px;
        padding: 30px 35px;
        width: 95%;
    }
    .main-slogan {
        font-size: 2rem;
    }
    .sub-slogan {
        font-size: 0.95rem;
    }
    .banner-cta-button {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .slider-banner-overlay {
        bottom: 40px;
        padding: 25px 30px;
        border-radius: 10px;
    }
    .main-slogan {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    .sub-slogan {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    .banner-cta-button {
        font-size: 0.85rem;
        padding: 10px 18px;
        gap: 6px;
    }
    .slogan-container::before {
        width: 50px;
        top: -15px;
        height: 2px;
    }
}

@media (max-width: 576px) {
    .slider-banner-overlay {
        bottom: 30px;
        padding: 20px 25px;
        width: 95%;
    }
    .main-slogan {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    .sub-slogan {
        font-size: 0.8rem;
        margin-bottom: 18px;
    }
    .banner-cta-button {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
    .slogan-container::before {
        width: 40px;
        top: -12px;
    }
}

@media (max-width: 480px) {
    .slider-banner-overlay {
        bottom: 20px;
        padding: 18px 20px;
    }
    .main-slogan {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    .sub-slogan {
        font-size: 0.75rem;
        margin-bottom: 15px;
    }
    .banner-cta-button {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
}

/* Preloader Styles - Minimalist Design */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 120px;
    height: auto;
    animation: logoFade 0.8s ease-in-out;
}

@keyframes logoFade {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInMenu {
    0% {
        transform: translateY(-150%);
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Menu Overlay - Body scroll prevention */
body.menu-active {
    overflow: hidden;
}

.navigation {
    display: flex;
    align-items: center;
}

.navigation.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(44, 62, 80, 0.25);
    z-index: -1;
    animation: fadeInOverlay 0.25s ease;
    backdrop-filter: blur(3px);
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInMenu {
    0% {
        transform: translateY(-150%);
        opacity: 0;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Update homepage elements with modern clean colors */
.feature-cards .feature-card .icon {
  color: var(--modern-primary) !important;
}

.feature-cards .feature-card:hover {
  box-shadow: 0 15px 30px rgba(52, 152, 219, 0.15) !important;
}

.feature-cards .feature-card h3 {
  color: var(--modern-primary) !important;
}

.about-modern-info-icon {
  background: linear-gradient(135deg, var(--modern-secondary), var(--modern-primary)) !important;
}

.about-modern-info-title {
  color: var(--modern-primary) !important;
}

.about-modern-title {
  color: var(--modern-primary) !important;
}

.about-modern-title span {
  color: var(--modern-secondary) !important;
}

.modern-project-title {
  color: var(--modern-primary) !important;
}

.modern-project-btn {
  background: var(--modern-secondary) !important;
}

.modern-project-btn:hover {
  background: var(--modern-primary) !important;
}

.nedenbiz-icon {
  color: var(--modern-secondary) !important;
}

.nedenbiz-item:hover .nedenbiz-icon {
  background: var(--modern-secondary) !important;
}

.nedenbiz-text h3 {
  color: var(--modern-primary) !important;
}

.contact-info-preview .info-item i {
  color: var(--modern-secondary) !important;
  background: rgba(52, 152, 219, 0.1) !important;
}

.contact-info-preview .info-item:hover i {
  background: var(--modern-secondary) !important;
}

.contact-btn {
  background: var(--modern-secondary) !important;
}

.contact-btn:hover {
  background: var(--modern-primary) !important;
}

.banner-cta-button {
  background: var(--modern-secondary) !important;
}

.banner-cta-button:hover {
  background: var(--modern-primary) !important;
}

/* ===== İLETİŞİM SAYFASI TASARIMI ===== */
.contact-page {
    padding: var(--section-padding);
    background: var(--modern-bg);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-page-info {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-page-info h3 {
    font-size: 1.8rem;
    color: var(--modern-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-page-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-page-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--modern-bg);
}

.contact-page-item:hover {
    transform: translateX(10px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-page-item i {
    font-size: 1.8rem;
    color: var(--modern-secondary);
    background: rgba(52, 152, 219, 0.1);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-page-item:hover i {
    background: var(--modern-secondary);
    color: white;
    transform: scale(1.1);
}

.contact-page-item-content h4 {
    font-size: 1.2rem;
    color: var(--modern-primary);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-page-item-content p,
.contact-page-item-content a {
    color: var(--modern-text-light);
    font-size: 1rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-page-item-content a:hover {
    color: var(--modern-secondary);
}

.contact-page-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-page-form h3 {
    font-size: 1.8rem;
    color: var(--modern-primary);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--modern-text);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    color: var(--modern-text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--modern-secondary);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    outline: none;
}

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

.contact-page-map {
    position: relative;
}

.contact-page-map iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 768px) {
    .contact-page-map {
        margin-bottom: 30px;
    }
    .contact-page-map iframe {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-page-map {
        margin-bottom: 20px;
    }
    .contact-page-map iframe {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 40px 0;
    }
    
    .contact-page-info,
    .contact-page-form {
        padding: 30px;
    }
    
    .contact-page-info h3,
    .contact-page-form h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .contact-page-item {
        padding: 15px;
    }
    
    .contact-page-item i {
        font-size: 1.5rem;
        padding: 12px;
    }
    
    .contact-page-item-content h4 {
        font-size: 1.1rem;
    }
    
    .contact-page-map {
        margin-top: 40px;
    }
    
    .contact-page-map iframe {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 30px 0;
    }
    
    .contact-page-info,
    .contact-page-form {
        padding: 20px;
    }
    
    .contact-page-info h3,
    .contact-page-form h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .contact-page-item {
        padding: 12px;
    }
    
    .contact-page-item i {
        font-size: 1.3rem;
        padding: 10px;
    }
    
    .contact-page-item-content h4 {
        font-size: 1rem;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .contact-page-map {
        margin-top: 30px;
    }
    
    .contact-page-map iframe {
        height: 250px;
    }
}

/* Eski iletişim stilleri kaldırıldı */
.contact-preview {
    display: none;
}

.contact-preview .container {
    display: none;
}

.contact-preview-content {
    display: none;
}

.contact-preview .section-title-modern h2 {
    display: none;
}

.contact-preview p {
    display: none;
}

.contact-info-preview {
    display: none;
}

.info-item {
    display: none;
}

.info-item:hover {
    display: none;
}

.info-item i {
    display: none;
}

.info-item:hover i {
    display: none;
}

.info-item p {
    display: none;
}

.contact-buttons {
    display: none;
}

.contact-btn {
    display: none;
}

.contact-btn:hover {
    display: none;
}

.contact-btn i {
    display: none;
}

.contact-map {
    display: none;
}

.contact-map iframe {
    display: none;
}

@media (max-width: 992px) {
    .contact-preview .container {
        display: none;
    }
    
    .contact-map {
        display: none;
    }
    
    .contact-preview .section-title-modern h2 {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-preview {
        display: none;
    }
    
    .contact-info-preview {
        display: none;
    }
    
    .info-item {
        display: none;
    }
    
    .info-item i {
        display: none;
    }
    
    .info-item p {
        display: none;
    }
    
    .contact-buttons {
        display: none;
    }
    
    .contact-btn {
        display: none;
    }
}

.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-status.completed {
    background: linear-gradient(135deg, var(--modern-secondary), var(--modern-primary));
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.project-status.ongoing {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .project-status {
        top: 15px;
        right: 15px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ===== GOOGLE MAPS BİLGİ KARTI ===== */
.gm-style .gm-style-iw-c {
    padding: 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    background: #fff !important;
    max-width: 300px !important;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
    padding: 0 !important;
}

.gm-style .gm-style-iw-t::after {
    background: linear-gradient(45deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 51%, rgba(255,255,255,0) 100%) !important;
    box-shadow: -2px 2px 2px 0 rgba(0,0,0,0.15) !important;
}

.map-info-content {
    padding: 0;
    margin: 0;
}

.map-info-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--modern-primary);
    margin-bottom: 10px;
}

.map-info-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.map-info-content .info-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.map-info-content .info-address i {
    color: var(--modern-secondary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.map-info-content .info-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--modern-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-info-content .info-phone:hover {
    color: var(--modern-secondary);
}

.map-info-content .info-phone i {
    color: var(--modern-secondary);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .gm-style .gm-style-iw-c {
        padding: 15px !important;
        max-width: 250px !important;
    }

    .map-info-content h3 {
        font-size: 1.1rem;
    }

    .map-info-content p {
        font-size: 0.9rem;
    }
}

.gm-style .gm-style-iw-c {
    padding: 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
    background: #fff !important;
    max-width: 300px !important;
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
    padding: 0 !important;
}

.gm-style .gm-style-iw-t::after {
    background: linear-gradient(45deg, rgba(255,255,255,1) 50%, rgba(255,255,255,0) 51%, rgba(255,255,255,0) 100%) !important;
    box-shadow: -2px 2px 2px 0 rgba(0,0,0,0.15) !important;
}

.map-info-content {
    padding: 0;
    margin: 0;
}

.map-info-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--modern-primary);
    margin-bottom: 10px;
}

.map-info-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.map-info-content .info-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.map-info-content .info-address i {
    color: var(--modern-secondary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.map-info-content .info-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--modern-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.map-info-content .info-phone:hover {
    color: var(--modern-secondary);
}

.map-info-content .info-phone i {
    color: var(--modern-secondary);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .gm-style .gm-style-iw-c {
        padding: 15px !important;
        max-width: 250px !important;
    }

    .map-info-content h3 {
        font-size: 1.1rem;
    }

    .map-info-content p {
        font-size: 0.9rem;
    }
}

/* ===== HARİTA BİLGİ PENCERE TASARIMI ===== */
.map-info-overlay {
    --map-primary: #2e7d32;
    --map-dark: #1b5e20;
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    max-width: 300px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    z-index: 999;
    transition: all 0.3s ease;
}

.map-info-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.map-info-title h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: var(--map-primary);
    letter-spacing: -0.3px;
}

.map-info-title p {
    font-size: 13px;
    margin-top: 6px;
    line-height: 1.4;
    color: #666;
    font-weight: 400;
}

.map-info-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.map-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
}

.map-info-item i {
    font-size: 17px;
    width: 22px;
    min-width: 22px;
    display: flex;
    align-items: center;
    color: var(--map-primary);
    margin-top: 2px;
}

.map-info-item-content {
    flex: 1;
}

.map-info-item-content h4 {
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    color: var(--map-primary);
    letter-spacing: -0.2px;
}

.map-info-item-content p,
.map-info-item-content a {
    font-size: 13px;
    margin: 3px 0 0 0;
    line-height: 1.4;
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.map-info-item-content a:hover {
    color: var(--map-primary);
}

.map-info-actions {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.map-info-btn {
    flex: 1;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--map-primary);
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    letter-spacing: -0.2px;
}

.map-info-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}

.map-info-btn.secondary {
    background: #f5f6f7;
    color: #2c3e50;
}

.map-info-btn.secondary:hover {
    background: #eaecee;
    box-shadow: none;
}

@media (max-width: 600px) {
    .map-info-overlay {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        max-width: 100%;
        margin: 20px auto;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    }
}