/* Contact Page Redesign CSS */

.contact-page-wrapper {
    background: #FFFFFF;
    padding: 100px 0 80px 0;
    min-height: 100vh;
}

.contact-page-wrapper .container {
    max-width: 1425px;
    padding: 0 15px;
    margin: 0 auto;
}

/* Contact Header */
.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
}

.contact-subtitle {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

/* Contact Badge */
.contact-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #FFF8E6;
    border: 2px solid #FFD100;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 1px;
    margin: 0 auto 50px auto;
    display: block;
    width: fit-content;
}

/* Contact Content */
.contact-content {
    margin-top: 50px;
}

/* Contact Form Card */
.contact-form-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.form-header {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #F3F4F6;
}

.form-header i {
    font-size: 24px;
    color: #FFD100;
    flex-shrink: 0;
}

.form-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 5px 0;
}

.form-header p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

/* Form Styling */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 8px;
}

.contact-form label .optional {
    color: #9CA3AF;
    font-weight: 400;
    font-size: 13px;
}

.contact-form .form-control {
    width: 100%;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 15px;
    color: #000000;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #FFD100;
    box-shadow: 0 0 0 3px rgba(255, 209, 0, 0.1);
}

.contact-form .form-control.error {
    border-color: #EF4444;
}

.contact-form select.form-control {
    cursor: pointer;
}

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

.btn-submit-contact {
    width: 100%;
    background: #82B92E;
    color: #FFFFFF;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-submit-contact:hover {
    background: #6fa025;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(130, 185, 46, 0.4);
}

.btn-submit-contact i {
    margin-right: 8px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-danger {
    background: #FEE2E2;
    border: 1px solid #EF4444;
    color: #991B1B;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
}

.success-message i {
    font-size: 60px;
    color: #10B981;
    margin-bottom: 20px;
}

.success-message p {
    font-size: 16px;
    color: #374151;
}

/* Business Details Card */
.business-details-card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.business-details-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 25px 0;
}

.detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

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

.detail-item i {
    font-size: 20px;
    color: #FFD100;
    flex-shrink: 0;
    margin-top: 3px;
}

.detail-item strong {
    display: block;
    font-size: 15px;
    color: #000000;
    margin-bottom: 5px;
}

.detail-item p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

.detail-item a {
    color: #FFD100;
    text-decoration: none;
}

.detail-item a:hover {
    text-decoration: underline;
}

.detail-item .note {
    font-size: 13px;
    color: #9CA3AF;
    font-style: italic;
    margin-top: 8px;
}

/* Opening Times Card */
.opening-times-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.opening-times-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F3F4F6;
}

.opening-times-card .card-header i {
    font-size: 20px;
    color: #FFD100;
}

.opening-times-card .card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.times-grid {
    margin-bottom: 20px;
}

.time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
}

.time-row:last-child {
    border-bottom: none;
}

.time-row .day {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.time-row .hours {
    font-size: 14px;
    font-weight: 600;
}

.time-row .hours.open {
    color: #10B981;
}

.time-row .hours.closed {
    color: #9CA3AF;
}

.opening-times-card .note {
    font-size: 13px;
    color: #9CA3AF;
    font-style: italic;
    margin: 0;
}

/* Company Info Card */
.company-info-card {
    background: #FFF8E6;
    border: 1px solid #FFD100;
    border-radius: 12px;
    padding: 20px;
}

.company-info-card p {
    font-size: 13px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-page-wrapper {
        padding: 80px 0 60px 0;
    }
    
    .contact-header h1 {
        font-size: 32px;
    }
    
    .contact-subtitle {
        font-size: 14px;
    }
    
    .contact-form-card,
    .business-details-card,
    .opening-times-card {
        margin-bottom: 20px;
    }
}
