/* Müşteri Künyesi Public Stilleri - UI/UX Prensipleriyle Güncellendi */

:root {
    --primary-color-display: #007cba; /* Consistent with form primary */
    --text-color-display: #333;
    --heading-color-display: #2c3e50;
    --border-color-display: #e0e0e0;
    --bg-color-light: #fdfdfd;
    --bg-color-blue-light: #f0f8ff;
    --bg-color-cyan-light: #e0f7fa;
    --bg-color-orange-light: #fffaf0;
    --bg-color-green-light: #e6ffe6;
    --shadow-display-light: rgba(0, 0, 0, 0.04);
    --shadow-display-medium: rgba(0, 0, 0, 0.08);
}

.musteri-kunyesi-info {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color-display);
    line-height: 1.8; /* Slightly increased line height for readability */
    margin-bottom: 25px; /* Increased margin */
    padding: 25px; /* Increased padding */
    border: 1px solid var(--border-color-display);
    border-radius: 12px; /* More rounded corners */
    background-color: var(--bg-color-light);
    box-shadow: 0 4px 15px var(--shadow-display-light); /* Softer initial shadow */
    transition: all 0.3s ease;
}

.musteri-kunyesi-info:hover {
    box-shadow: 0 8px 25px var(--shadow-display-medium); /* More pronounced hover shadow */
    transform: translateY(-3px); /* More pronounced lift effect */
}

.musteri-kunyesi-info strong {
    color: var(--primary-color-display); /* Consistent primary color */
    margin-right: 10px; /* Increased margin */
    font-weight: 600;
}

.musteri-kunyesi-info.company-name-full {
    font-size: 2.5em; /* Larger font size */
    font-weight: 700;
    color: var(--heading-color-display);
    border-bottom: 4px solid var(--primary-color-display); /* Thicker border */
    padding-bottom: 20px; /* Increased padding */
    margin-bottom: 30px; /* Increased margin */
    background-color: #ffffff;
    text-align: center;
    border-radius: 12px 12px 0 0; /* Consistent rounded corners */
    box-shadow: 0 6px 15px var(--shadow-display-medium); /* Stronger shadow */
    padding-top: 20px;
}

.musteri-kunyesi-info.address,
.musteri-kunyesi-info.tax-number,
.musteri-kunyesi-info.tax-office {
    font-size: 1.2em; /* Slightly larger font */
    padding: 18px 25px; /* Increased padding */
    background-color: var(--bg-color-blue-light);
    border-left: 6px solid var(--primary-color-display); /* Thicker border */
    border-radius: 10px; /* Consistent rounded corners */
    margin-bottom: 20px; /* Increased margin */
}

.musteri-kunyesi-info.corporate-identity-guide {
    font-size: 1.2em;
    padding: 18px 25px;
    background-color: var(--bg-color-cyan-light);
    border-left: 6px solid #00bcd4; /* Cyan border */
    border-radius: 10px;
}

.musteri-kunyesi-info.corporate-identity-guide a {
    color: var(--primary-color-display);
    text-decoration: none;
    font-weight: 500;
}

.musteri-kunyesi-info.corporate-identity-guide a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.musteri-kunyesi-info.email a {
    color: var(--primary-color-display);
    text-decoration: none;
    font-weight: 500;
}

.musteri-kunyesi-info.email a:hover {
    text-decoration: underline;
    color: #0056b3;
}

.musteri-kunyesi-info.font-style {
    font-style: italic;
    color: #666;
    background-color: #f8f8f8;
    border-left: 6px solid #ccc; /* Thicker border */
    padding: 18px 25px;
    font-size: 1.2em;
}

.musteri-kunyesi-info.colors {
    display: flex;
    flex-wrap: wrap;
    gap: 15px; /* Increased gap */
    align-items: center;
    padding: 18px 25px;
    background-color: var(--bg-color-orange-light);
    border-left: 6px solid #ffc107; /* Orange border */
    border-radius: 10px;
}

.musteri-kunyesi-info.colors .color-box {
    width: 40px; /* Larger color boxes */
    height: 40px;
    border: 2px solid #ccc;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 2px 5px var(--shadow-display-light); /* Softer shadow */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.musteri-kunyesi-info.colors .color-box:hover {
    transform: scale(1.15); /* More pronounced scale */
    box-shadow: 0 4px 10px var(--shadow-display-medium);
}

.musteri-kunyesi-info.social-media {
    padding: 18px 25px;
    background-color: var(--bg-color-green-light);
    border-left: 6px solid #28a745; /* Green border */
    border-radius: 10px;
    font-size: 1.2em;
}

.musteri-kunyesi-info.social-media ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.musteri-kunyesi-info.social-media li {
    margin-bottom: 10px; /* Increased margin */
    display: flex;
    align-items: center;
}

.musteri-kunyesi-info.social-media li:last-child {
    margin-bottom: 0;
}

.musteri-kunyesi-info.social-media a {
    color: var(--primary-color-display);
    text-decoration: none;
    font-weight: 500;
    margin-left: 8px; /* Increased margin */
}

.musteri-kunyesi-info.social-media a:hover {
    text-decoration: underline;
    color: #0056b3;
}
