/* Genel Container */
.contact_area .container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Başlık ve Alt Başlık */
.title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #3e8427;
}

.subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
}

/* Hakkımızda Bölümü */
.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.about-text {
    flex: 1 1 500px;
    min-width: 300px;
}

    .about-text h3 {
        color: #3e8427;
        margin-bottom: 20px;
        border-bottom: 3px solid #3e8427;
        display: inline-block;
        padding-bottom: 5px;
    }

    .about-text p {
        line-height: 1.6;
        font-size: 1rem;
    }

.about-image {
    flex: 1 1 400px;
    min-width: 300px;
}

    .about-image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

/* Vizyon ve Misyon Bölümü */
.vision-mission-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
}

.vision-mission-box {
    flex: 1 1 400px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    min-width: 280px;
}

    .vision-mission-box h3 {
        color: #3e8427;
        margin-bottom: 15px;
    }

.vision {
    background: #f0fff6;
    box-shadow: 0 4px 12px rgb(0, 255, 68, 0,15);
}

.mission {
    background: #f9f9f9;
}

.vision-mission-box p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

/* Alt Görsel */
.bottom-image {
    margin-top: 60px;
    text-align: center;
}

    .bottom-image img {
        max-width: 100%;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

/* Responsive */
@media (max-width: 768px) {
    .about-wrapper,
    .vision-mission-wrapper {
        flex-direction: column;
        gap: 25px;
        padding: 0 10px;
    }

    .about-text,
    .about-image,
    .vision-mission-box {
        flex: none;
        min-width: 100%;
    }

        .about-text h3,
        .vision-mission-box h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .about-text p,
        .vision-mission-box p {
            font-size: 0.9rem;
            line-height: 1.4;
        }

        .about-image img {
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

    .bottom-image {
        margin-top: 40px;
    }

        .bottom-image img {
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
}

/* Başlangıçta sayfa görünmez */
body {
    opacity: 0;
    transition: opacity 1s ease;
}

    /* Sayfa yüklendiğinde görünür hale gelir */
    body.loaded {
        opacity: 1;
    }

/* Hizmetler Slider */
#services-slider {
    justify-content: center !important;
    font-family: Arial, sans-serif;
    background-image: url("/img/hizmetler-ugay-logo.png"), linear-gradient(90deg, rgba(237, 232, 232, 0.79) 47%, rgba(0, 0, 0, 0.50) 100%);
    background-repeat: no-repeat, no-repeat;
    background-size: auto calc(100% - 20px), cover;
    background-position: center 10px, center center;
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 40px 0;
}

.slider-container {
    position: relative;
    padding-bottom: 30px;
}

.slider-wrapper {
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.slider-track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    border: 2px solid #63aa4b;
    border-radius: 10px;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    user-select: none;
}

    .service-card img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
        user-select: none;
    }

    .service-card h3 {
        margin: 10px 0 12px;
        font-size: 1.2rem;
        color: #333;
        user-select: none;
    }

    .service-card p {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.4;
        flex-grow: 1;
        user-select: none;
    }

.more-button {
    display: inline-block;
    background-color: #3e8427;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    user-select: none;
}

    .more-button:hover {
        background-color: #2f6b1b;
    }

/* Mobilde 1 içerik göster */
@media (max-width: 768px) {
    .service-card {
        flex: 0 0 100%;
        margin: 10px 0;
    }
}

/* Neden Biz Bölümü */
#neden-biz {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

    #neden-biz h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 20px;
        font-weight: 700;
    }

    #neden-biz p {
        max-width: 700px;
        margin: 0 auto 50px;
        font-size: 1.1rem;
        line-height: 1.7;
        color: #555;
        text-align: center;
    }

.neden-biz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.neden-biz-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.neden-biz-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.neden-biz-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #3e8427;
}

.neden-biz-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

/* Hover efekti */
.neden-biz-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive: Ekran küçüldüğünde tek sütun */
@media (max-width: 768px) {
    .neden-biz-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .neden-biz-item {
        padding: 20px 25px;
    }

        .neden-biz-item h3 {
            font-size: 1.2rem;
        }

        .neden-biz-item p {
            font-size: 0.9rem;
            line-height: 1.4;
        }
}

/* Containerr */
.containerr {
    position: relative;
    margin: 0 auto;
    width: 1250px;
    height: 600px;
    overflow: hidden;
}

.img-kutu {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
    user-select: none;
    pointer-events: none;
    border-radius: 20px;
}

.kutu {
    position: absolute;
    top: 50%;
    left: 400px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px 40px;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    color: #222;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

    .kutu:hover {
        background: rgba(255, 255, 255, 0.4);
    }

    .kutu h3 {
        margin: 0 0 20px 0;
        font-weight: 900;
        font-size: 2rem;
        line-height: 1.2;
        color: #f39c12;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    }

    .kutu p {
        margin: 0 0 15px 0;
        font-weight: 600;
        font-size: 1.1rem;
        line-height: 1.6;
        color: #333;
        text-shadow: 0 0 2px rgba(255, 255, 255, 0.7);
    }

    .kutu strong {
        font-weight: 800;
        color: #222;
    }

/* Responsive */
@media (max-width: 768px) {
    .containerr {
        width: 100%;
        height: auto;
        position: relative;
        margin: 0 auto;
        padding: 0 15px;
    }

    .img-kutu {
        margin-top: 10px;
        height: auto;
        border-radius: 15px;
    }

    .kutu {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        max-width: 100%;
        margin: 20px auto;
        padding: 25px 30px;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.35);
        border-radius: 15px;
        text-align: center;
    }

        .kutu h3 {
            font-size: 1.6rem;
            line-height: 1.3;
        }

        .kutu p {
            font-size: 1rem;
            line-height: 1.5;
        }
}

/* Experience Section */
.experience-section {
    background-color: #eaeaea;
    position: relative;
    overflow: hidden;
}

    .experience-section .container {
        position: relative;
        z-index: 2;
    }

    .experience-section::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 100px;
        transform: translateY(-50%);
        width: 800px;
        height: 800px;
        background: url('/main/img/noktali-dunya.png') no-repeat center center;
        background-size: contain;
        opacity: 0.15;
        pointer-events: none;
        z-index: 1;
    }

/* Responsive */
@media (max-width: 767.98px) {
    .experience-section::after {
        background: url('/main/img/noktali-dunya.png') no-repeat center center;
        background-size: contain;
    }

    .experience-section .col-md-6.text-start {
        left: 100px;
        text-align: center !important;
    }
}

/* Custom Section */
.custom-section {
    background-color: #e2e2e28c;
    padding: 60px 0;
}

.custom-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px 20px 40px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #212529;
}

    .custom-card:hover {
        background: #f8f9fa;
        color: #212529;
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgb(4, 255, 24, 0,60);
    }

.img-box {
    width: 100%;
    padding-top: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

    .img-box img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 12px;
    }

.custom-card h2 {
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

/* Mobil uyumlu container */
@media (max-width: 768px) {
    .contact_area .container {
        padding: 20px 15px;
        max-width: 100%;
    }

    .title {
        font-size: 2rem;
        margin-bottom: 8px;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .custom-card {
        padding: 15px 15px 30px;
    }

        .custom-card h2 {
            font-size: 1.5rem;
        }

    .img-box {
        padding-top: 100%;
    }
}

/* Daha küçük ekranlar için (480px altı) */
@media (max-width: 480px) {
    .title {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .about-text h3,
    .vision-mission-box h3,
    .neden-biz-item h3 {
        font-size: 1.2rem;
    }

    .custom-card h2 {
        font-size: 1.3rem;
    }

    .kutu h3 {
        font-size: 1.3rem;
    }
}

.contact_area .container-lg {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px 60px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* İletişim Bilgileri Kutucukları */
.contact-info-boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.info-box {
    background-color: #f7fcf8;
    flex: 1 1 30%;
    min-width: 250px;
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    gap: 15px;
    transition: box-shadow 0.3s ease;
}

    .info-box:hover {
        box-shadow: 0 12px 30px rgb(0, 255, 60, 0,30);
    }

    .info-box i {
        font-size: 30px;
        color: #3e8427;
        flex-shrink: 0;
    }

    .info-box h6 {
        margin: 0 0 6px 0;
        font-weight: 600;
        font-size: 1.1rem;
        color: #222;
    }

    .info-box p {
        margin: 0;
        font-size: 0.9rem;
        color: #555;
    }

    .info-box a {
        color: #3e8427;
        text-decoration: none;
    }

        .info-box a:hover {
            text-decoration: underline;
        }

/* Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Form Satırları */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

/* Form Grupları */
.form-group {
    flex: 1 1 48%;
    min-width: 250px;
}

    .form-group.full-width {
        flex: 1 1 100%;
    }

/* Form Kontrolleri */
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.8px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    resize: vertical;
}

    .form-control:focus {
        border-color: #3e8427;
        box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
        outline: none;
    }

/* Buton */
.primary-btn {
    background-color: #00ff0d;
    color: #fff;
    padding: 14px 28px;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    align-self: flex-end;
    box-shadow: 0 6px 12px rgb(3, 255, 0, 0,40);
}

    .primary-btn:hover {
        background-color: #0056b3;
        box-shadow: 0 8px 20px rgb(0, 179, 31, 0,60);
    }

/* Harita */
#ugayLeafletMap {
    margin-top: 50px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    height: 420px !important;
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-boxes {
        flex-direction: column;
    }

    .info-box {
        flex: 1 1 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        flex: 1 1 100%;
    }

    .primary-btn {
        width: 100%;
        align-self: center;
    }
}