/* Contact Page Styles - Leverage Style */
.page-title {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: white;
}

.page-title-content {
    max-width: 700px;
}

.decorative-line {
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin-bottom: 30px;
}

.page-title .responsive-h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-title .subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.page-title .alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 30px;
    display: inline-block;
    font-size: 0.95rem;
}

.page-title .alert i {
    margin-right: 10px;
}

.page-title .alert-success {
    background: #10b981;
    color: white;
}

.page-title .alert-error {
    background: #ef4444;
    color: white;
}

.page-title .alert-warning {
    background: #f59e0b;
    color: white;
}

.contact-full {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 35, 51, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-label {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.hours-section {
    margin-top: 40px;
}

.hours-section h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.hours-item span:first-child {
    color: #666;
}

.hours-item span:last-child {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form-container form {
    background: #fff;
    padding: 0;
}

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

.form-group {
    margin-bottom: 20px;
}

.contact-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-color);
}

.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form-container input:focus,
.contact-form-container textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 35, 51, 0.1);
}

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

.btn-submit {
    width: auto;
    padding: 16px 40px;
    border-radius: 6px;
    background: var(--primary-color);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #001a26;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 35, 51, 0.2);
}

/* Contact Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .page-title {
        padding: 60px 0;
        text-align: center;
    }
    
    .decorative-line {
        margin: 0 auto 30px;
    }
    
    .page-title .responsive-h1 {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    .page-title .subtitle {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .page-title .alert {
        display: block;
        width: 100%;
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .btn-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .page-title .responsive-h1 {
        font-size: 1.6rem;
    }
    
    .page-title .subtitle {
        font-size: 0.95rem;
    }
    
    .contact-form-container input,
    .contact-form-container textarea {
        font-size: 16px;
    }
    
    .contact-form-container {
        padding: 0;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
}
