﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #006d5b;
    --secondary-green: #008e74;
    --light-green: #e8f5f2;
    --accent-green: #00c9a7;
    --accent-gold: #ffd700;
    --dark-text: #222;
    --light-text: #fff;
    --gray-bg: #f8f9fa;
    --transition: all 0.4s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 109, 91, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f0f9f7 0%, #e6f4f1 100%);
    color: var(--dark-text);
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    padding: 80px 20px 50px;
    position: relative;
}

    .section-header h1 {
        font-size: 3.5rem;
        font-weight: 700;
        color: var(--primary-green);
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
    }

        .section-header h1::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--accent-green), var(--accent-gold));
            border-radius: 2px;
        }

    .section-header p {
        font-size: 1.2rem;
        color: #555;
        max-width: 700px;
        margin: 30px auto 0;
        line-height: 1.8;
    }

/* İletişim Bilgileri */
.contact-info-section {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);7
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .contact-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-hover);
    }

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--accent-green);
        z-index: 2;
    }

    .contact-card::after {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 100px;
        height: 100px;
        background: rgba(0, 201, 167, 0.05);
        border-radius: 50%;
        z-index: -1;
    }

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background: var(--accent-green);
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 2.5rem;
    color: var(--primary-green);
    transition: var(--transition);
}

.contact-card:hover .contact-icon i {
    color: white;
}

.contact-card h3 {
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.contact-card p {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.contact-details {
    margin-top: 15px;
}

    .contact-details a {
        display: block;
        color: var(--primary-green);
        text-decoration: none;
        font-weight: 500;
        margin-bottom: 10px;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .contact-details a i {
            color: var(--accent-green);
        }

        .contact-details a:hover {
            color: var(--accent-green);
            transform: translateX(5px);
        }

/* İletişim Formu */
.contact-form-section {
    padding: 50px 0 80px;
    background: url('https://i.ibb.co/0jZR6Xt/flask.png') no-repeat bottom 30px right 30px;
    background-size: 200px;
    background-blend-mode: overlay;
    background-color: rgba(232, 245, 242, 0.3);
}

.form-container {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

    .form-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: var(--accent-green);
    }

    .form-container::after {
        content: '';
        position: absolute;
        bottom: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: rgba(0, 201, 167, 0.05);
        border-radius: 50%;
        z-index: -1;
    }

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

    .form-header h2 {
        font-size: 2.5rem;
        color: var(--primary-green);
        margin-bottom: 15px;
    }

    .form-header p {
        color: #555;
        max-width: 600px;
        margin: 0 auto;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

    .form-group.full-width {
        grid-column: span 2;
    }

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

    label i {
        color: var(--accent-green);
    }

.required::after {
    content: ' *';
    color: #e74c3c;
}

input, textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--gray-bg);
}

    input:focus, textarea:focus {
        outline: none;
        border-color: var(--accent-green);
        box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.2);
    }

textarea {
    min-height: 180px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(to right, var(--primary-green), var(--accent-green));
    color: white;
    border: none;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    margin: 30px auto 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .submit-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: all 0.6s ease;
        z-index: -1;
    }

    .submit-btn:hover::before {
        left: 100%;
    }

    .submit-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 109, 91, 0.4);
    }

.form-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #666;
    font-size: 0.9rem;
}

    .form-footer i {
        color: var(--accent-green);
        margin-right: 5px;
    }

    .form-footer a {
        color: var(--primary-green);
        text-decoration: none;
        font-weight: 500;
    }

        .form-footer a:hover {
            text-decoration: underline;
        }

/* Harita Bölümü */
.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 500px;
}

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

/* Responsive Tasarım */
@media (max-width: 992px) {
    .section-header h1 {
        font-size: 3rem;
    }

    .form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .section-header {
        padding: 60px 20px 40px;
    }

        .section-header h1 {
            font-size: 2.5rem;
        }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .map-container {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .section-header h1 {
        font-size: 2rem;
    }

    .contact-card {
        padding: 30px 20px;
    }

        .contact-card h3 {
            font-size: 1.5rem;
        }
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card {
    animation: fadeIn 0.6s ease forwards;
}

    .contact-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .contact-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .contact-card:nth-child(3) {
        animation-delay: 0.3s;
    }
