/* İletişim Sayfası Stilleri */
.contact-page-section {
    padding: 60px 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.contact-content {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-page-title {
   	font-size: 36px;
  	line-height: 40px;
  	color: #000;
    margin-bottom: 12px;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.contact-company-name {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 32px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}



/* İletişim Bilgileri Bölümü */
.contact-info-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e7eb;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-label {
   font-size: 16px;
  	line-height: 24px;
  	font-family: Poppins;
  	color: #000;
}

.contact-info-value {
    font-size: 16px;
  	line-height: 24px;
  	font-family: Poppins;
  	color: #000;
}

/* İletişim Formu */
.contact-form {
    margin-top: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    background-color: #ffffff;
    color: #1f2937;
}

.form-control:focus {
    outline: none;
    border-color: #068bdb;
    box-shadow: 0 0 0 3px rgba(6, 139, 219, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 8px;
}

.contact-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 139, 219, 0.3);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* Sidebar Navigasyon */
.contact-page-section .col-lg-3 {
    padding-left: 24px;
}

.contact-page-section .list-bg {
    background-color: #ffffff;
    padding: 24px 18px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  	border-radius: 12px;
  	background-color: rgba(255, 255, 255, 0);
  	overflow: hidden;
  	text-align: left;
  	font-size: 24px;
  	color: #000;
  	font-family: 'Material Icons';
    position: sticky;
    top: 20px;
}

.contact-page-section .list-bg ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-page-section .list-bg li {
    margin-bottom: 4px;
}

.contact-page-section .contact-list-title,
.contact-page-section .contact-list-subtitle {
    display: flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
  	line-height: 24px;
  	font-family: Poppins;
  	color: #000;
    transition: all 0.2s;
    border: none;
    background-color: transparent;
}

.contact-page-section .contact-list-title:hover,
.contact-page-section .contact-list-subtitle:hover {
    color: #068bdb;
    background-color: #f3f4f6;
}

.contact-page-section .contact-list-active {
    background: linear-gradient(90deg, #0082cf, #58b5eb);
    color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.contact-page-section .contact-list-active:hover {
    color: #ffffff;
    background: linear-gradient(90deg, #0082cf, #58b5eb);
}
.contact-page-section .contact-list-active svg path {
    fill: #ffffff;
}
.contact-page-section .contact-list-subtitle {
    font-size: 13.9px;
  	line-height: 20px;
    padding-left: 32px;
}

.contact-page-section .ms-2 {
    margin-left: 8px;
}

/* Responsive Tasarım */
@media (max-width: 991.98px) {
    .contact-page-section {
        padding: 40px 0;
    }
    
    .contact-page-section .col-lg-3 {
        padding-left: 0;
        margin-top: 32px;
    }
    
    .contact-page-section .list-bg {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-content {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .contact-page-title {
        font-size: 24px;
    }
    
    .contact-company-name {
        font-size: 16px;
    }
    
    .contact-info-value {
        font-size: 14px;
    }
    
    .form-control {
        font-size: 14px;
        padding: 10px 14px;
    }
    
    .contact-submit-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .contact-content {
        padding: 20px;
        border-radius: 12px;
    }
}

