/* Contact Page Styles */

.contact-section {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Information Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-header {
    margin-bottom: 8px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #1a1a1a;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleY(1);
}

.contact-card:hover {
    border-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-card:hover .contact-icon {
    background: #000000;
    transform: scale(1.05);
}

.contact-icon i {
    font-size: 20px;
    color: #ffffff;
}

.contact-card-content-wrapper {
    flex: 1;
    min-width: 0;
}

.contact-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.contact-card-content {
    color: #666;
    line-height: 1.5;
}

.contact-card-content p {
    margin: 0 0 4px 0;
    font-size: 13px;
}

.contact-card-content p:last-child {
    margin-bottom: 0;
}

.contact-card-content a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: #000000;
    text-decoration: underline;
}

.contact-note {
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin-top: 8px !important;
}

/* Contact Form Section */
.contact-form-section {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 30px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Alert Messages */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.alert-success {
    background: #d1fae5;
    border: 2px solid #10b981;
    color: #065f46;
}

.alert-success i {
    color: #10b981;
    font-size: 20px;
}

.alert-error {
    background: #fee2e2;
    border: 2px solid #ef4444;
    color: #991b1b;
}

.alert-error i {
    color: #ef4444;
    font-size: 20px;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0;
}

.required {
    color: #ef4444;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.textarea-wrapper {
    align-items: flex-start;
}

.input-icon {
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 13px;
    z-index: 2;
    pointer-events: none;
    line-height: 1;
}

.form-control {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 14px;
    color: #1a1a1a;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
}

.form-control:focus + .input-icon,
.form-control:not(:placeholder-shown) + .input-icon {
    color: #1a1a1a;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    padding: 12px 14px 12px 42px;
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

textarea.form-control + .input-icon {
    top: 16px;
    transform: none;
}

/* Submit Button */
.btn-submit {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
}

.btn-submit:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(4px);
}

/* Page Title Styling */
.tf-page-title {
    background-color: #fc2779 !important;
    padding: 20px 0;
}

.tf-page-title .heading {
    font-size: 28px;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #ffffff;
    font-weight: 600;
}

.tf-breadcrumb-list .text {
    color: #e0e0e0;
}

.tf-breadcrumb-list a.text {
    color: #e0e0e0;
}

.tf-breadcrumb-list a.text:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .contact-card {
        padding: 14px 16px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
    
    .contact-card-title {
        font-size: 13px;
    }
    
    .contact-card-content p {
        font-size: 12px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form-section {
        padding: 25px;
    }
    
    .btn-submit {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 30px 0;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .form-title {
        font-size: 20px;
    }
    
    .contact-card {
        padding: 12px 14px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }
    
    .contact-icon i {
        font-size: 16px;
    }
    
    .contact-card-title {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .contact-card-content p {
        font-size: 11px;
    }
    
    .contact-form-section {
        padding: 20px;
    }
    
    .form-control {
        padding: 12px 14px 12px 42px;
        font-size: 13px;
    }
    
    .input-icon {
        left: 14px;
        font-size: 16px;
    }
}

