:root {
    --premium-gold: #b3834d;
    --dark-bg: #121212;
    --card-bg: #1a1a1a;
    --border-color: #2a2a2a;
    --text-color: #cccccc;
}

body {
    background-color: var(--dark-bg);
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================== ANİMASYON ================== */
.animate-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.animate-element.fade-in-up {
    opacity: 1;
    transform: translateY(0);
}

/* ================== SAYFA ÜST (HERO) ================== */
.page-hero {
    background: linear-gradient(rgba(18,18,18,0.8), rgba(18,18,18,0.9)), url('../uploads/hizmetlerimiz/sabitkasa.png') center/cover;
    padding: 100px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 48px;
    margin: 0 0 15px 0;
    font-weight: 800;
    letter-spacing: 2px;
}

.breadcrumb {
    font-size: 14px;
    color: var(--premium-gold);
    font-weight: 600;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover { color: white; }

.breadcrumb i {
    font-size: 10px;
    margin: 0 8px;
    color: #555;
}

/* ================== İLETİŞİM İÇERİK ALANI ================== */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.contact-subtitle {
    color: var(--premium-gold);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-main-title {
    font-size: 38px;
    color: white;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.gold-text { color: var(--premium-gold); }

.contact-desc {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* --- İletişim Bilgileri Listesi --- */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(179, 131, 77, 0.1);
    color: var(--premium-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: 0.4s;
    border: 1px solid rgba(179, 131, 77, 0.2);
}

.info-item:hover .info-icon {
    background: var(--premium-gold);
    color: var(--dark-bg);
}

.info-text h5 {
    font-size: 18px;
    color: white;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.info-text a, .info-text span {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: 0.3s;
}

.info-text a:hover {
    color: var(--premium-gold);
}

/* ================== FORM ALANI ================== */
.form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 50px;
    border-radius: 15px;
    height: 100%;
    box-sizing: border-box;
}

.form-wrapper h3 {
    font-size: 26px;
    margin: 0 0 30px 0;
    border-bottom: 2px solid var(--premium-gold);
    display: inline-block;
    padding-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-group {
    flex: 1;
}

.input-group input, .input-group textarea {
    width: 100%;
    padding: 16px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
    box-sizing: border-box;
}

.input-group input:focus, .input-group textarea:focus {
    outline: none;
    border-color: var(--premium-gold);
    box-shadow: 0 0 10px rgba(179, 131, 77, 0.2);
}

.btn-submit {
    background: var(--premium-gold);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: #c5965e;
    transform: translateY(-3px);
}

/* ================== HARİTA ALANI ================== */
.map-section {
    padding-bottom: 100px;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}

/* ================== MOBİL UYUMLULUK ================== */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .input-row {
        flex-direction: column;
    }
    .form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .page-title { font-size: 36px; }
    .contact-main-title { font-size: 32px; }
    .page-hero { padding: 80px 0 40px 0; }
    .map-wrapper iframe { height: 350px; }
}