/* =========================
  CONTACT PAGE STYLES
========================= */
.contact-page {
    background-color: #f5f5f5;
    color: #333;
    padding: 20px 0;
    min-height: 60vh;
    background-image: linear-gradient(rgba(255,255,255,0.92), rgba(255,255,255,0.92)), url('https://images.unsplash.com/photo-1547143379-66e9f757f4a6?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-attachment: fixed;
}

    .contact-page .contact-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 12px;
    }

    .contact-page .contact-header {
        text-align: center;
        margin-bottom: 32px;
        padding-bottom: 18px;
        border-bottom: 3px solid var(--msb-bordo);
        position: relative;
    }

        .contact-page .contact-header h1 {
            color: #2c3e50;
            font-size: 2.2rem;
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-page .contact-header .subtitle {
            color: var(--msb-bordo);
            font-size: 1.05rem;
            font-weight: 600;
        }

    .contact-page .header-decoration {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 12px;
    }

        .contact-page .header-decoration span {
            width: 40px;
            height: 4px;
            background: var(--msb-bordo);
            margin: 0 10px;
            border-radius: 2px;
        }

        .contact-page .header-decoration i {
            color: var(--msb-bordo);
            font-size: 1.05rem;
        }




.contact-page .content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-page .contact-card,
.contact-page .hours-card,
.contact-page .map-card {
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact-page .contact-card:hover,
    .contact-page .hours-card:hover,
    .contact-page .map-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.08);
    }

.contact-page .card-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--msb-bordo);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #eaeaea;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .contact-page .card-title i {
        color: var(--msb-bordo);
    }

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background-color: #eef2ff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--msb-bordo);
    font-size: 1.2rem;
}

.contact-text h3 {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-text p {
    font-size: 1.1rem;
    color: #222;
}

.contact-text a {
    color: var(--msb-bordo);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

    .contact-text a:hover {
        color: #1e3c72;
        text-decoration: underline;
    }

.brochure-btn {
    display: inline-block;
    background: linear-gradient(to right, var(--msb-bordo), var(--msb-bordo));
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    width: 100%;
}

    .brochure-btn:hover {
        background: linear-gradient(to right, var(--msb-bordo), var(--msb-bordo));
        transform: scale(1.03);
        box-shadow: 0 4px 10px rgba(42, 82, 152, 0.3);
    }

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.contact-page th {
    background-color: var(--msb-light);
    font-weight: 600;
    color: var(--msb-mavi);
}

.contact-page tr:hover {
    background-color: var(--msb-light);
}

.closed-day {
    color: #e74c3c;
    font-weight: 600;
}

.notes {
    background-color: #fff8e1;
    padding: 1.2rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 4px solid #ffc107;
}

    .notes p {
        margin-bottom: 0.7rem;
        font-size: 0.95rem;
        color: #555;
    }

    .notes i {
        color: #ff9800;
        margin-right: 8px;
    }

.map-container {
    width: 100%;
    height: 300px;
    background-color: #eaeaea;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 1rem;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
    display: block;
}

.map-placeholder {
    text-align: center;
    padding: 2rem;
}

    .map-placeholder i {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #888;
    }

footer {
    text-align: center;
    padding: 1.5rem;
    margin-top: 2rem;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

@media (max-width: 768px) {
    .contact-page .content-wrapper {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .contact-card, .hours-card, .map-card {
        padding: 1.5rem;
    }
}

/* =========================
   RESPONSIVE - CONTACT EXTRA
   ========================= */
@media (max-width: 992px) {
    .contact-page {
        background-attachment: scroll;
    }

    .contact-page .content-wrapper {
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 12px 0;
    }

    .contact-page .contact-header h1 {
        font-size: 1.45rem;
        letter-spacing: 0;
    }

    .contact-page .contact-card,
    .contact-page .hours-card,
    .contact-page .map-card {
        padding: 1.1rem;
    }

        .contact-page .contact-card:hover,
        .contact-page .hours-card:hover,
        .contact-page .map-card:hover {
            transform: none;
        }

    .contact-page .card-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        margin-right: 0.75rem;
    }

    .contact-text h3 {
        font-size: 0.92rem;
    }

    .contact-text p,
    .contact-text a {
        font-size: 1rem;
        word-break: break-word;
    }

    .contact-page th,
    .contact-page td {
        padding: 8px 10px;
        font-size: 0.9rem;
    }

    .map-container {
        height: 240px;
    }

    .brochure-btn {
        padding: 10px 18px;
        font-size: 0.95rem;
    }

    .notes {
        padding: 1rem;
    }

        .notes p {
            font-size: 0.9rem;
        }
}

@media (max-width: 480px) {
    .contact-page .contact-header h1 {
        font-size: 1.2rem;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
    }

    .map-container {
        height: 200px;
    }

    /* Tabloyu yatay kaydırılabilir hale getir */
    .contact-page .hours-card table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
}

