/* ============================================================
    კონტაქტის გვერდის სტილები (სტანდარტული)
============================================================ */

.contact-page-content {
    padding-bottom: 30px;
}

/* სათაური */
.contact-page-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: left; /* სწორება მარცხნივ */
}

.contact-page-content h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--brand-color, #e67e22);
    margin: 20px 0 30px; /* სწორება მარცხნივ */
    border-radius: 2px;
}

/* შესავალი ტექსტი */
.contact-page-content p.lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #4b5563;
    margin-bottom: 45px;
    line-height: 1.7;
    max-width: 700px;
    text-align: left; /* სწორება მარცხნივ */
}

/* სექციის სათაური */
.info-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

/* საკონტაქტო ინფორმაციის ბლოკი */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--brand-color, #e67e22);
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text strong {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-text span {
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-page-content h1 {
        font-size: 1.8rem;
    }
    .contact-page-content p.lead {
        font-size: 1.1rem;
    }
    .info-section h2 {
        font-size: 1.2rem;
    }
}