.contact-hero {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #fff;
    text-align: center;
    padding: 140px 20px 100px;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-hero p {
    color: #ccc;
    font-size: 18px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 20px 80px;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-hero p {
        font-size: 16px;
    }
}



/* ========== İLETİŞİM SAYFASI ========== */
.contact-section {
    padding: 80px 20px;
    background-color: #fff;
} 

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Sol Bilgiler */
.contact-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info p {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.info-box i {
    font-size: 24px;
    color: #e63946;
    flex-shrink: 0;
    margin-top:18px;
}

.info-box h4 {
    margin-bottom: 4px;
    font-size: 16px;
    font-weight: 700;
}

.info-box p {
    color: #444;
    font-size: 15px;
    margin: 0;
}

/* Sağ Form */
.contact-form {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    /* height: 450px; */
}

.contact-form h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.form-group input,
.form-group textarea {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 15px;
    transition: 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e63946;
    outline: none;
    box-shadow: 0 0 3px rgba(230, 57, 70, 0.3);
}

/* Buton */
.btn-send {
    background-color: #e63946;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top:20px;
}

.btn-send:hover {
    background-color: #d12d3b;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}




/* ========== GOOGLE MAPS BÖLÜMÜ ========== */
.contact-map {
  background-color: #fff;
  padding: 0;
  margin-top: 60px;
  margin-bottom: 60px;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
}

/* Responsive */
@media (max-width: 768px) {
  .map-container iframe {
    height: 350px;
  }
}
