:root {
    --primary: #9c6b5e;
    --primary-soft: #f4e9e6;
    --dark: #2d2a29;
    --gray: #6b6664;
    --white: #ffffff;
    --bg-main: #fdfaf7;
    
    --font-script: 'Alex Brush', cursive;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Poppins', sans-serif;
}

.location-section {
    background-color: var(--bg-main);
    padding: 100px 0;
    font-family: var(--font-sans);
    overflow: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Üst Başlık Stilleri === */
.text-center { text-align: center; }
.section-header { max-width: 700px; margin: 0 auto 50px; }
.subtitle { font-family: var(--font-script); font-size: 38px; color: var(--primary); display: block; margin-bottom: -5px; }
.title { font-family: var(--font-serif); font-size: 42px; color: var(--dark); margin-bottom: 15px; }
.description { font-size: 15px; color: var(--gray); line-height: 1.6; }

/* === Ana Kutu Tasarımı (Harita + Bilgiler) === */
.location-box {
    display: flex;
    background-color: var(--white);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    overflow: hidden; /* İçeriklerin köşelerden taşmasını engeller */
}

/* === Sol Alan: Harita İframe === */
.map-wrapper {
    width: 60%;
    min-height: 500px;
    position: relative;
}

.map-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(110%); /* Haritayı sitenin renk tonuna biraz daha uygun hale getirir */
}

/* === Sağ Alan: İletişim Detayları === */
.contact-info-wrapper {
    width: 40%;
    padding: 50px 40px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--dark);
    margin: 0 0 30px 0;
    padding-bottom: 20px;
    border-bottom: 2px dashed #f2e9e6;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text strong {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.info-text span {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.phone-link {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.phone-link:hover {
    color: var(--dark);
}

/* === Yol Tarifi Butonu === */
.btn-directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(156, 107, 94, 0.2);
    margin-top: auto; /* Butonu en alta iter */
}

.btn-directions:hover {
    background-color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(156, 107, 94, 0.3);
}

/* === Mobil Responsive Uyumluluğu === */
@media (max-width: 1024px) {
    .location-box {
        flex-direction: column;
    }
    .map-wrapper {
        width: 100%;
        height: 400px;
        min-height: auto;
    }
    .contact-info-wrapper {
        width: 100%;
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .title {
        font-size: 32px;
    }
    .brand-name {
        font-size: 22px;
    }
    .map-wrapper {
        height: 350px;
    }
    .btn-directions {
        width: 100%;
    }
}